-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
34 lines (34 loc) · 965 Bytes
/
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
{
"name": "make-controllable",
"version": "1.0.0",
"description": "React getDerivedStateFromProps 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"
},
"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": "7.2.2",
"@babel/preset-env": "7.2.3",
"@babel/preset-react": "7.0.0",
"babel-core": "7.0.0-bridge.0",
"jest": "23.6.0",
"rollup": "0.68.1",
"rollup-plugin-babel": "4.1.0"
}
}