-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.13 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
41
42
43
44
{
"name": "react-updaters",
"version": "3.0.1",
"description": "Updaters and React handlers to change state and props preserving immutable semantics",
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/pxpeterxu/react-updaters.git"
},
"scripts": {
"build": "tsc --emitDeclarationOnly && babel src/index.tsx > dist/index.js"
},
"keywords": [
"react",
"updaters",
"handlers",
"immutable",
"event"
],
"author": "Peter Xu",
"license": "MIT",
"bugs": {
"url": "https://github.com/pxpeterxu/react-updaters/issues"
},
"homepage": "https://github.com/pxpeterxu/react-updaters#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/lodash": "^4.14.118",
"@types/react": "^16.7.7",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.7.2"
},
"dependencies": {
"lodash": "~4",
"react": "*"
}
}