-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 816 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 816 Bytes
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": "diffsonjs",
"version": "0.1.2",
"description": "A json diff/patch library",
"main": "index.js",
"scripts": {
"compile": "tsc -p ./",
"test": "mocha",
"coverage": "nyc npm test",
"codecov": "nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && ./node_modules/.bin/codecov",
"prepublish": "npm run compile"
},
"keywords": [
"json",
"diff",
"patch"
],
"repository": {
"type": "git",
"url": "https://github.com/henoc/diffsonjs.git"
},
"author": "henoc",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"codecov": "^3.1.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"typescript": "^3.2.2"
},
"dependencies": {
"jsonpointer": "^4.0.1"
}
}