-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 1.12 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
{
"name": "immutable-proxy",
"version": "0.0.2",
"description": "access immutable values more easily",
"main": "lib/index.js",
"peerDependencies": {
"immutable": "^3.7.6"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"webpack": "^1.12.14",
"immutable": "^3.7.6"
},
"scripts": {
"test": "mocha tests --compilers js:babel-register --recursive --harmony_shipping ",
"build": "babel src -d lib && npm run build-umd && npm run build-min",
"build-umd": "NODE_ENV=production webpack src/index.js umd/index.js",
"build-min": "NODE_ENV=production webpack -p src/index.js umd/index.min.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/zackify/immutable-proxy.git"
},
"author": "Zach Silveira",
"license": "ISC",
"bugs": {
"url": "https://github.com/zackify/immutable-proxy/issues"
},
"homepage": "https://github.com/zackify/immutable-proxy#readme"
}