-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.54 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "nead",
"description": "Dependency injector and container.",
"version": "0.1.0",
"author": "Thomas Prelot <tprelot@gmail.com> (https://github.com/Gnucki)",
"contributors": [],
"keywords": [
"gnodi",
"lib",
"nead",
"fast",
"easy",
"simple",
"light",
"dependency",
"injection",
"injector",
"container",
"di",
"interface",
"object",
"service",
"soa",
"dynamic",
"check",
"compilation",
"runtime"
],
"dependencies": {
"felv": "^0.1.1"
},
"devDependencies": {
"@gnodi/eslint-config": "^0.4.0",
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"nyc": "^13.0.1"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gnodi/nead"
},
"main": "index",
"scripts": {
"check": "gnodi-lint && npm run test-coverage && npm run test-integration",
"lint": "gnodi-lint",
"test": "NODE_ENV='test' mocha --recursive test/unit/ src/",
"test-coverage": "nyc npm test && nyc report --reporter text-summary",
"test-coveralls": "nyc npm test && nyc report --reporter text-lcov | coveralls",
"test-debug": "NODE_ENV='test' mocha --recursive --full-trace --check-leaks test/unit/ src/",
"test-integration": "NODE_ENV='test' mocha --recursive test/integration/",
"test-watch": "NODE_ENV='test' mocha -w -b --recursive test/unit/ test/integration/ test/fixtures/ index.js"
},
"bin": {},
"engines": {
"node": ">=8",
"npm": ">=5"
}
}