-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.89 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
{
"name": "je-di",
"version": "1.3.0",
"description": "Just Enough dependency injection",
"repository": "https://github.com/william26/je-di.git",
"main": "index.js",
"scripts": {
"coverage": "NODE_ENV=\"test\" mocha -r adana-dump --compilers js:babel-core/register tests/**/*.spec.js src/**/*",
"lcov": "npm run coverage && cat ./coverage/coverage.json | ./node_modules/.bin/adana --format lcov > coverage/lcov.info",
"htmlcov": "npm run coverage && cat ./coverage/coverage.json | ./node_modules/.bin/adana --format html > coverage/coverage.html",
"ocov": "open coverage/coverage.html",
"test": "mocha --compilers js:babel-register tests/**/* src/**/*",
"test-watch": "mocha --watch --compilers js:babel-register tests/**/* src/**/*",
"clean-build": "rm -rf build",
"clean-coverage": "rm -rf coverage",
"clean-deps": "rm -rf node_modules",
"clean": "npm run clean-build && npm run clean-coverage && npm run clean-deps",
"build": "npm run clean-build && cd src && babel -d ../build '**/*.js'",
"watch": "npm run clean-build && cd src && babel --watch -d ../build '**/*.js'"
},
"author": "Antoine Jackson",
"license": "MIT",
"devDependencies": {
"adana-cli": "^0.1.1",
"adana-dump": "^0.1.0",
"adana-format-html": "0.0.5",
"adana-format-json": "^0.1.0",
"adana-format-lcov": "^0.1.1",
"adana-format-pretty": "^0.1.0",
"babel-core": "^6.4.5",
"babel-plugin-transform-adana": "^0.5.6",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"babel-register": "^6.4.3",
"chai": "^3.5.0",
"coveralls": "^2.11.6",
"isparta": "^4.0.0",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"args-list": "^0.3.3",
"function-arguments": "^1.0.4"
}
}