-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.26 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.26 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
{
"name": "babel-plugin-transform-function-parameter-decorators",
"version": "1.2.0",
"description": "A Babel plugin to transform function parameter decorators",
"main": "lib",
"engine": {
"node": "*"
},
"scripts": {
"build": "babel src -d lib",
"watch": "babel src -d lib -w",
"postinstall": "npm run build",
"prepublish": "npm run build",
"test": "babel test/src -d test/lib && ava"
},
"author": "Joe Groseclose",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/benderTheCrime/babel-plugin-transform-function-parameter-decorators.git"
},
"bugs": {
"url": "https://github.com/benderTheCrime/babel-plugin-transform-function-parameter-decorators/issues"
},
"keywords": [
"babel",
"babel-plugin",
"function",
"decorators"
],
"ava": {
"files": [
"./test/index.js"
],
"babel": "inherit"
},
"dependencies": {
"ava": "^0.15.2",
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.9.0"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"eslint": "^3.0.1",
"eslint-config-benderthecrime": "^1.4.0",
"eslint-plugin-react": "^5.2.2"
}
}