This repository has been archived by the owner on Sep 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 263
/
package.json
80 lines (80 loc) · 2.36 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "core-decorators",
"version": "0.20.0",
"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",
"module": "es/core-decorators.js",
"jsnext:main": "es/core-decorators.js",
"typings": "./index.d.ts",
"files": [
"es",
"lib",
"src",
"README.md",
"LICENSE",
"index.d.ts"
],
"scripts": {
"prepublish": "npm run build",
"build": "rimraf lib && babel --out-dir lib src && cross-env BABEL_ENV=es babel --out-dir es src",
"build-bower": "babel-node scripts/build-bower.js",
"prebuild-tsc": "rimraf built",
"build-tsc": "tsc --outDir lib",
"clean": "rimraf lib es built",
"test": "mocha --compilers js:babel-core/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": {
"@types/chai": "^3.5.2",
"@types/mocha": "^2.2.41",
"@types/node": "^6.0.73",
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"camelcase": "^4.1.0",
"chai": "^3.5.0",
"cross-env": "^5.0.0",
"glob": "^7.1.1",
"global-wrap": "^2.0.0",
"interop-require": "1.0.0",
"lodash": "4.17.5",
"mocha": "^3.2.0",
"rimraf": "^2.6.1",
"sinon": "2.1.0",
"sinon-chai": "^2.9.0",
"typescript": "^2.3.3"
}
}