-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1016 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
35
36
37
38
39
40
41
{
"name": "compose-state",
"repository": "https://github.com/tvler/compose-state",
"author": "Tyler Deitz <[email protected]>",
"keywords": [
"react",
"functional-programming",
"javascript"
],
"bugs": {
"url": "https://github.com/tvler/compose-state/issues"
},
"version": "1.0.13",
"description": "Compose multiple setState or getDerivedStateFromProps updaters in React",
"main": "dist.js",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"babel-jest": "^26.0.1",
"jest": "^26.0.1",
"react": "^16.13.1",
"react-test-renderer": "^16.13.1"
},
"scripts": {
"build": "babel index.js --out-file dist.js",
"test": "jest"
},
"babel": {
"presets": [
"@babel/env",
"@babel/react"
],
"plugins": [
"@babel/proposal-class-properties"
]
}
}