-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.23 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
{
"name": "rage-power",
"version": "1.0.0",
"description": "Activate the raging power mode in the React world",
"jsnext:main": "index.jsx",
"main": "index.js",
"scripts": {
"build": "babel index.jsx -o index.js",
"prepublish": "npm run build"
},
"keywords": [
"power",
"mode",
"rage",
"react"
],
"author": "Zero Cho <itszero@gmail.com>",
"license": "MIT",
"dependencies": {
"lodash.throttle": "^4.0.1",
"textarea-caret": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-plugin-syntax-object-rest-spread": "^6.8.0",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.10.3",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1"
},
"peerDependencies": {
"react": ">= 0.14",
"react-dom": ">= 0.14"
},
"repository": {
"type": "git",
"url": "git://github.com/itszero/rage-power.git"
},
"babel": {
"presets": ["es2015", "react"],
"plugins": [
"syntax-object-rest-spread",
"transform-object-rest-spread",
"transform-class-properties",
"transform-es2015-modules-commonjs"
]
}
}