-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.31 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
{
"name": "update-in",
"version": "0.0.1-alpha.5",
"description": "Persistent functional object updates on vanilla js data structures (wraps react-addons-update)",
"keywords": [
"react",
"persistent",
"immutable",
"update"
],
"repository": {
"type": "git",
"url": "https://github.com/dustingetz/update-in.git"
},
"license": "MIT",
"scripts": {
"test": "karma start",
"start": "node server.js",
"build": "webpack",
"dist": "webpack --config webpack.dist.js"
},
"main": "./src/update-in.js",
"devDependencies": {
"babel-core": "^5.8.22",
"babel-loader": "^5.3.2",
"babelify": "^6.1.3",
"chai": "^1.9.2",
"clone": "^1.0.2",
"es5-shim": "^4.0.3",
"karma": "0.12.37",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.0",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.1.1",
"karma-sinon-chai": "^1.1.0",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "1.6.0",
"lodash": "^3.10.1",
"mocha": "^2.0.1",
"react": "^0.14.2",
"uglifyify": "~2.6.0",
"webpack": "^1.11.0"
},
"dependencies": {
"array-union": "^1.0.0",
"deep-equal": "^0.2.1",
"lodash.isobject": "^3.0.2",
"omit-keys": "^0.1.0",
"react-addons-update": "^0.14.2"
}
}