-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.05 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.05 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
{
"name": "babel-plugin-transform-react-remove-statics",
"version": "0.0.5",
"description": "Remove unnecessary statics attached to React components for different build environments",
"main": "lib/index.js",
"scripts": {
"test": "istanbul test ./node_modules/mocha/bin/_mocha",
"prebuild": "rm -rf lib/",
"build": "babel src --out-dir lib",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/NogsMPLS/babel-plugin-transform-react-remove-statics.git"
},
"keywords": [
"babel",
"babel-plugin",
"react",
"minification",
"remove",
"static"
],
"author": "Nathan Smith",
"license": "MIT",
"bugs": {
"url": "https://github.com/NogsMPLS/babel-plugin-transform-react-remove-statics/issues"
},
"dependencies": {
"babel-core": "^6.5.1"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"istanbul": "^0.4.2",
"mocha": "^2.4.5"
}
}