-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
34 lines (34 loc) · 953 Bytes
/
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
{
"name": "immu",
"version": "3.0.0",
"description": "A TINY, fail-fast, lazy, \"naked\", simple immutable Javascript objects library",
"main": "dist/immu.js",
"scripts": {
"test": "babel-node __test__/index.js | tap-format-spec",
"build": "npm run build-dev && uglifyjs --compress --mangle --output dist/immu.min.js -- dist/immu.js",
"build-dev": "babel src/index.js --out-file dist/immu.js",
"prepublish": "npm run build"
},
"author": "Scott Corgan",
"license": "MIT",
"devDependencies": {
"@tap-format/spec": "^0.2.0",
"babel": "^5.8.21",
"tessed": "^2.2.0",
"uglify-js": "^2.4.24"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scottcorgan/immu.git"
},
"keywords": [
"immutable",
"data",
"structure",
"freeze"
],
"bugs": {
"url": "https://github.com/scottcorgan/immu/issues"
},
"homepage": "https://github.com/scottcorgan/immu#readme"
}