-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 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
{
"name": "icepick",
"version": "2.4.0",
"description": "Utilities for treating frozen JavaScript objects as persistent immutable collections.",
"main": "icepick.js",
"scripts": {
"dist:prod": "buble icepick.js | browserify - --standalone icepick -g [ envify purge --NODE_ENV production ] | uglifyjs -mc > icepick.min.js",
"dist:dev": "buble icepick.js | browserify - --standalone icepick -g [ envify purge --NODE_ENV development ] | uglifyjs -mc > icepick.dev.js",
"preversion": "npm run dist:prod && npm run dist:dev",
"pretest": "standard icepick.js icepick.test.js",
"test": "tap icepick.test.js -R spec --100"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]/aearly/icepick"
},
"keywords": [
"freeze",
"frozen",
"immutable",
"immutability",
"persistent",
"collections",
"structural",
"sharing",
"update",
"redux",
"flux",
"store",
"react",
"mori",
"clojure"
],
"author": "Alexander Early <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aearly/icepick/issues"
},
"homepage": "https://github.com/aearly/icepick",
"devDependencies": {
"browserify": "^14.4.0",
"buble": "^0.16.0",
"envify": "^4.1.0",
"standard": "^10.0.2",
"tap": "^10.7.0",
"uglify-es": "^3.0.25"
},
"dependencies": {}
}