-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
29 lines (29 loc) · 929 Bytes
/
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
{
"name": "simple-ioc",
"version": "3.0.25",
"description": "Simple Inversion of Control for node.js",
"main": "index.js",
"scripts": {
"test": "npm -s run test-unit && npm -s run test-function",
"test-unit": "echo ' --- Unit tests --- ' && node_modules/.bin/_mocha --reporter spec --colors --recursive tests/unit",
"test-function": "echo ' --- Function tests --- ' && node_modules/.bin/_mocha --reporter spec --colors --recursive tests/function",
"test-file": "node_modules/.bin/_mocha --reporter spec --colors --recursive $1"
},
"keywords": [
"ioc",
"inversion",
"of",
"control"
],
"repository": {
"type": "git",
"url": "https://github.com/viaplay/simple-ioc.git"
},
"author": "Joakim J. Rapp, Viaplay",
"license": "BSD",
"readmeFilename": "README.md",
"gitHead": "cf000ad2b360e7956a8378008c736196347b5cbd",
"devDependencies": {
"mocha": "^2.2.5"
}
}