-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.08 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": "es-decorators",
"version": "1.0.0",
"description": "Most useful EcmaScript decorators",
"jsnext:main": "src/index.js",
"main": "lib/index.js",
"scripts": {
"start": "babel -w -s inline --presets es2015 --ignore spec.js -d lib src",
"build": "babel -s inline --presets es2015 --ignore spec.js -d lib src",
"build:test": "babel -s inline --presets es2015 --plugins transform-decorators-legacy -d test src",
"prepublish": "npm run build && npm test",
"test": "npm run build:test && mocha test/**.spec.js"
},
"repository": {
"type": "git",
"url": "[email protected]:jakwuh/es-decorators.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"decorators"
],
"author": "jakwuh <[email protected]>",
"license": "MIT",
"dependencies": {
"lodash": "^4.15.0"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.14.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.16.0",
"chai": "^3.5.0",
"mocha": "^3.0.2",
"sinon": "^1.17.5"
}
}