-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
40 lines (40 loc) · 1.13 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
{
"name": "babel-plugin-transform-decorators-legacy",
"description": "A plugin for Babel 6 that (mostly) replicates the old decorator behavior from Babel 5.",
"version": "1.3.5",
"author": "Logan Smyth <[email protected]>",
"main": "lib",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/loganfsmyth/babel-plugin-transform-decorators-legacy.git"
},
"bugs": {
"url": "https://github.com/loganfsmyth/babel-plugin-transform-decorators-legacy/issues"
},
"keywords": [
"babel",
"babel-plugin",
"es7",
"decorators"
],
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-plugin-transform-class-properties": "^6.3.0",
"babel-plugin-transform-runtime": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"chai": "^3.4.1",
"mocha": "^2.3.4"
},
"dependencies": {
"babel-plugin-syntax-decorators": "^6.1.18",
"babel-runtime": "^6.2.0",
"babel-template": "^6.3.0"
},
"scripts": {
"build": "babel src -d lib",
"watch": "babel src -d lib -w",
"prepublish": "npm run build",
"test": "babel-node node_modules/.bin/_mocha -- test"
}
}