-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.34 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
{
"name": "babel-plugin-static-modify-jsx",
"version": "1.0.5",
"description": "Static JSX modifier",
"main": "lib/index.js",
"keywords": [
"babel-plugin"
],
"repository": {
"type": "git",
"url": "[email protected]:seanpan/babel-plugin-static-modify-jsx.git"
},
"dependencies": {
"babel-literal-to-ast": "^1.0.0",
"function.prototype.name": "^1.0.3",
"is-subset": "^0.1.1",
"lodash": "^4.17.4",
"object-is": "^1.0.1",
"object.entries": "^1.0.4",
"object.values": "^1.0.4",
"rst-selector-parser": "^2.2.3"
},
"scripts": {
"test": "mocha",
"build": "babel src -d lib",
"watch": "babel src -d lib -w",
"prepublish": "npm run build"
},
"author": "sean pan",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-generator": "^6.25.0",
"babel-plugin-syntax-decorators": "^6.13.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-strict-mode": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-traverse": "^6.25.0",
"babel-types": "^6.25.0",
"babylon": "^6.17.4",
"chai": "^4.1.1",
"jest": "^20.0.4",
"mocha": "^3.5.0",
"snap-shot": "^2.17.0"
}
}