-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
38 lines (36 loc) · 1.18 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
{
"name": "needlepoint",
"version": "1.0.5",
"description": "ES6 and beyond dependency injection framework. Uses new ES7 proposals such as decorators.",
"main": "dist/index.js",
"scripts": {
"test": "rm -rf coverage/ dist/ && ./node_modules/.bin/babel-node ./node_modules/.bin/isparta cover --report lcovonly ./node_modules/.bin/_mocha test/ && npm run-script build",
"build": "rm -rf dist/ && ./node_modules/.bin/babel src --out-dir dist/",
"prepublish": "npm build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrewmunsell/needlepoint.git"
},
"keywords": [
"dependency",
"injection",
"di"
],
"author": "Andrew Munsell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andrewmunsell/needlepoint/issues"
},
"homepage": "https://github.com/andrewmunsell/needlepoint#readme",
"devDependencies": {
"babel-cli": "^6.3.13",
"babel-plugin-transform-decorators-legacy": "^1.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"chai": "^3.2.0",
"isparta": "^4.0.0",
"mocha": "^2.3.2"
}
}