-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.26 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "cerise",
"version": "0.1.2",
"description": "Intuitive and lightweight Dependency Injection library for Node.js",
"author": "Jean Dupouy <[email protected]>",
"repository": "izeau/cerise",
"bugs": "https://github.com/izeau/cerise/issues",
"keywords": [
"dependency",
"injection",
"di",
"container",
"factory",
"singleton",
"service",
"proxy",
"middleware",
"controller",
"express",
"koa"
],
"main": "cerise.js",
"module": "cerise.mjs",
"files": [
"cerise.js",
"cerise.mjs"
],
"scripts": {
"build": "rollup -c .rollup.js",
"coverage": "nyc mocha 'lib/**/*.spec.js'",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"integration": "mocha --config examples/.mocharc.json 'examples/*/**/*.spec.js'",
"e2e": "mocha --config examples/.mocharc.e2e.json 'examples/*/test/**/*.js'",
"lint": "prettier --write '**/*.{js,json,md,yml}'",
"test": "mocha 'lib/**/*.spec.js'"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"esm": "^3.2.22",
"mocha": "^6.1.4",
"nyc": "^14.1.0",
"prettier": "^1.17.0",
"rollup": "^1.10.1",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0"
}
}