-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.16 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
{
"name": "immutable-object-methods",
"version": "1.3.2",
"description": "Update normal plain javascript object, immutable style. Simlar to how immutable.js, seamless-immutable etc does it but a lot smaller and simpler.",
"main": "dist/index.js",
"scripts": {
"test": "ava && semistandard | snazzy",
"build": "rm -rf dist && mkdir -p dist && babel lib --out-dir dist",
"watch": "rm -rf dist && mkdir -p dist && babel -w lib --out-dir dist",
"prepublish": "npm run build",
"posttest": "package-json-to-readme package.json --travis > readme.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/micnews/immutable-object-methods.git"
},
"author": "mic.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/micnews/immutable-object-methods/issues"
},
"homepage": "https://github.com/micnews/immutable-object-methods#readme",
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"package-json-to-readme": "^1.5.1",
"semistandard": "^9.0.0",
"snazzy": "^5.0.0"
},
"dependencies": {
"object-assign": "^4.1.0"
}
}