forked from Carrooi/Node-DependencyInjection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "dependency-injection",
"description": "Dependency injection with configuration and autowire for node js and browser",
"version": "2.3.2",
"author": {
"name": "David Kudera",
"email": "[email protected]"
},
"keywords": [
"di",
"dependency injection",
"autowire",
"configuration"
],
"repository": {
"type": "git",
"url": "[email protected]:sakren/node-dependency-injection.git"
},
"license": "MIT",
"engines": {
"node": ">=0.9"
},
"main": "./lib/DI",
"dependencies": {
"easy-configuration": "~2.0.1",
"callsite": "~1.0.0"
},
"devDependencies": {
"chai": "~1.9.0",
"mocha": "~1.18.0",
"mocha-phantomjs": "~3.3.1",
"phantomjs": "~1.9.2-6"
},
"scripts": {
"test": "npm run test-node && npm run test-browser",
"build-and-test": "npm run test-build && npm run test",
"test-build": "coffee -co ./test/data ./test/data; coffee -co ./test/node/lib ./test/node/src; cd ./test/browser; simq build;",
"test-node": "mocha ./test/node/index.js --reporter spec",
"test-browser": "mocha-phantomjs ./test/browser/index.html"
}
}