This repository has been archived by the owner on Jun 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.45 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
53
54
55
56
{
"name": "json-touch-patch",
"description": "Immutable JSON Patch implementation based on RFC 6902",
"version": "0.11.2",
"author": "Nao Yonamine <[email protected]>",
"bugs": {
"url": "https://github.com/mohayonao/json-touch-patch/issues"
},
"devDependencies": {
"babel-plugin-istanbul": "^2.0.1",
"babel-preset-power-assert": "^1.0.0",
"eslint": "^3.7.1",
"fast-json-patch": "^1.1.1",
"json-patch-test-suite": "^1.1.0",
"mocha": "^3.1.2",
"npm-run-all": "^3.1.0",
"nyc": "^8.3.1",
"power-assert": "^1.4.1",
"run-with-mocha": "^1.0.0"
},
"files": [
"package.json",
"README.md",
"lib"
],
"homepage": "https://github.com/mohayonao/json-touch-patch/",
"keywords": [
"immutable",
"json",
"patch",
"rfc6902"
],
"license": "MIT",
"main": "lib/index.js",
"nyc": {
"include": [
"lib/**/*.js"
],
"sourceMap": false,
"instrument": false
},
"repository": {
"type": "git",
"url": "https://github.com/mohayonao/json-touch-patch.git"
},
"scripts": {
"clean": "rm -rf coverage .nyc_output npm-debug.log",
"cover": "BABEL_ENV=coverage nyc --reporter text --reporter html npm test",
"lint": "eslint lib test",
"postversion": "git push && git push --tags && npm run clean",
"prepublish": "npm-run-all clean lint test",
"preversion": "npm-run-all clean lint test",
"test": "mocha",
"travis": "npm-run-all lint test"
}
}