forked from jayphelps/core-decorators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.49 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
50
51
52
53
54
55
56
57
{
"name": "core-decorators",
"version": "0.12.3",
"description": "Library of JavaScript stage-0 decorators (aka ES2016/ES7 decorators but that's not accurate!) inspired by languages that come with built-ins like @override, @deprecate, @autobind, @mixin and more! Works great with React/Angular/more!",
"main": "lib/core-decorators.js",
"jsnext:main": "src/core-decorators.js",
"files": [
"lib",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"build": "babel --out-dir lib src",
"build-bower": "babel-node scripts/build-bower.js",
"test": "npm run build && mocha --compilers js:babel/register --require babel/polyfill \"test/**/*.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",
"autobind",
"react",
"angular",
"lodash",
"mixin",
"mixins"
],
"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",
"camelcase": "^2.0.1",
"chai": "^3.2.0",
"glob": "^6.0.1",
"interop-require": "1.0.0",
"lodash": "4.10.0",
"mocha": "^2.2.5",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0"
}
}