-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "react-update",
"version": "0.4.4",
"description": "Make setState easily and immutably",
"main": "lib/index.js",
"scripts": {
"test": "npm run lint && npm run unit",
"lint": "eslint src",
"unit": "jest",
"compile": "babel src -d lib",
"release": "npm run test && npm run compile && npm version patch && npm publish && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jianghai/react-update.git"
},
"keywords": [
"react",
"immutability",
"utils"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/jianghai/react-update/issues"
},
"homepage": "https://github.com/jianghai/react-update#readme",
"dependencies": {
"babel-plugin-transform-runtime": "^6.12.0",
"immutability-helper": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-jest": "^13.2.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^3.1.1",
"eslint-cli": "^1.1.0",
"jasmine": "^2.4.1",
"jest-cli": "^13.2.3",
"react": "^15.2.1",
"react-addons-test-utils": "^15.2.1",
"react-dom": "^15.2.1"
},
"jest": {
"unmockedModulePathPatterns": [
"<rootDir>/node_modules",
"<rootDir>/src"
],
"testPathDirs": [
"<rootDir>/test"
],
"testDirectoryName": "test"
}
}