forked from NoamELB/make-controllable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.03 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
{
"name": "make-controllable",
"version": "0.0.3",
"description": "React componentWillReceiveProps implementation to make Controllable components",
"scripts": {
"build": "rollup -c rollup.config.js -o index.cjs.js -f cjs && rollup -c rollup.config.js -o index.es.js -f es",
"test": "jest --setupTestFrameworkScriptFile=raf/polyfill"
},
"main": "index.cjs.js",
"module": "index.es.js",
"repository": {
"type": "git",
"url": "git+https://github.com/NoamELB/make-controllable"
},
"keywords": [
"controllable",
"react"
],
"author": "NoamELB & Tzook",
"bugs": {
"url": "https://github.com/NoamELB/make-controllable/issues"
},
"homepage": "https://github.com/NoamELB/make-controllable#readme",
"license": "MIT",
"devDependencies": {
"babel-core": "~6.26.0",
"babel-preset-env": "~1.6.1",
"babel-preset-react": "~6.24.1",
"jest": "~21.2.1",
"raf": "~3.4.0",
"react": "~16.2.0",
"react-dom": "~16.2.0",
"rollup": "~0.52.0",
"rollup-plugin-babel": "~3.0.1"
}
}