-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.25 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.25 KB
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
{
"name": "traits-decorator",
"version": "1.0.1",
"description": "Apply traits with decorators",
"keywords": [
"traits",
"decorator",
"class"
],
"main": "lib/index.js",
"scripts": {
"test": "babel-tape-runner test/*.js",
"compile": "echo \"compiling...\" && babel -d lib/ src/",
"lint": "eslint --quiet src/ test/",
"prepublish": "npm run compile && npm run test && npm run lint"
},
"author": {
"name": "Maximiliano Fierro",
"email": "elmasse@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/CocktailJS/traits-decorator.git"
},
"bugs": {
"url": "https://github.com/CocktailJS/traits-decorator/issues"
},
"license": "MIT",
"devDependencies": {
"babel-preset-stage-0": "6.5.0",
"babel-preset-es2015": "6.14.0",
"babel-runtime": "6.11.6",
"babel-plugin-transform-runtime": "6.12.0",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-cli": "6.14.0",
"babel-core": "6.14.0",
"babel-eslint": "6.1.2",
"babel-tape-runner": "^2.0.1",
"eslint": "^3.3.1",
"tap": "^5.7.0"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"transform-runtime",
"transform-decorators-legacy"
]
}
}