-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 968 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
35
36
37
38
39
40
{
"name": "@ima-worldhealth/tree",
"version": "2.6.0",
"description": "Build a tree from an adjacency list and operate on it",
"main": "index.js",
"scripts": {
"prepublishOnly": "yarn test",
"test": "./node_modules/.bin/eslint index.js && nyc ava",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"release": "release-it --disable-metrics --github.release --no-git.requireUpstream"
},
"release-it": {
"hooks": {
"before:init": "yarn test"
}
},
"publishConfig": {
"access": "public"
},
"keywords": [
"tree",
"adjacency",
"list"
],
"author": "jniles",
"license": "MIT",
"devDependencies": {
"ava": "^5.0.0",
"coveralls": "^3.0.0",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-import": "^2.9.0",
"nyc": "^15.0.0",
"release-it": "^16.0.0"
},
"dependencies": {
"debug": "^4.0.0"
}
}