forked from jayphelps/core-decorators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 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
42
43
44
45
{
"name": "core-decorators",
"version": "0.2.0",
"description": "Library of ES7 decorators inspired by languages that come with built-ins like @override, @deprecated, etc",
"main": "lib/core-decorators.js",
"files": [
"lib",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"build": "babel --stage 0 --out-dir lib src",
"test": "npm run build && mocha --require babel/polyfill 'lib/**/*.spec.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/jayphelps/core-decorators.js.git"
},
"keywords": [
"es6",
"es7",
"es2015",
"es2016",
"babel",
"decorators",
"override",
"deprecated",
"java",
"annotations"
],
"author": "Jay Phelps <hello@jayphelps>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jayphelps/core-decorators.js/issues"
},
"homepage": "https://github.com/jayphelps/core-decorators.js",
"devDependencies": {
"babel": "^5.4.7",
"chai": "^3.2.0",
"mocha": "^2.2.5",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0"
}
}