-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.78 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "tiny-merge-patch",
"version": "0.1.2",
"description": "JSON Merge Patch (RFC 7396) Implementation",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"files": [
"cjs",
"esm"
],
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"ava": "3.15.0",
"babel-cli": "6.26.0",
"babel-plugin-istanbul": "4.1.6",
"babel-preset-env": "1.7.0",
"babel-register": "6.26.0",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.2.0",
"eslint-config-prettier": "2.10.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "2.7.0",
"husky": "0.14.3",
"istanbul": "0.4.5",
"lodash": "4.17.21",
"nyc": "15.1.0",
"prettier": "1.19.1",
"standard-version": "4.4.0"
},
"scripts": {
"build": "babel esm -d cjs --extensions \".mjs\",\".js\"",
"release": "standard-version",
"prepublishOnly": "npm run build",
"test": "NODE_ENV=test nyc --reporter=text --reporter=lcovonly --reporter=html --no-cache ava",
"lint": "eslint ./esm ./test",
"git-hook": "npm run lint && npm run test",
"postrewrite": "npm run git-hook",
"precommit": "npm run git-hook",
"commitmsg": "commitlint -e $GIT_PARAMS"
},
"repository": {
"type": "git",
"url": "https://github.com/QuentinRoy/tiny-merge-patch.git"
},
"keywords": [
"JSON",
"merge",
"patch",
"RFC",
"7396"
],
"author": "Quentin Roy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/quentinroy/tiny-merge-patch/issues"
},
"homepage": "https://github.com/QuentinRoy/tiny-merge-patch",
"ava": {
"require": [
"babel-register"
]
},
"nyc": {
"sourceMap": false,
"instrument": false
},
"dependencies": {}
}