-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 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
{
"name": "reupdate",
"description": "Selectors & React.PureComponent friendly immutable update",
"keywords": [
"redux",
"reselect",
"react",
"selector",
"immutable"
],
"version": "1.12.0",
"main": "index.js",
"repository": "https://github.com/nukisman/reupdate",
"author": "Alexander Nuikin <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "rm -fR build/*",
"build": "npx babel src/ --out-dir build/ -q --source-maps inline && yarn run postbuild",
"rebuild": "yarn run clean && yarn run build",
"test": "npx jest -c jest.config.json",
"copy": "cp package.json .npmignore README.md CHANGELOG.md build/",
"postbuild": "yarn run copy && cd build && yarn unlink && yarn link"
},
"dependencies": {
"lodash.topath": "^4.5.2",
"reselect": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-syntax-class-properties": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"immutability-helper": "^2.6.6",
"jest": "^22.4.2",
"lodash.filter": "^4.6.0",
"lodash.isequal": "^4.5.0",
"object-path-immutable": "^1.0.1"
}
}