-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.55 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
70
71
72
73
74
75
{
"name": "z-curve",
"version": "0.0.2",
"description": "Stationary Z Curve",
"main": "src/index.js",
"scripts": {
"benchmark": "node bench.js",
"test": "nyc ava -vs",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov | codecov",
"start": "nyc --reporter html ava -vs && open ./.nyc_output/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shiwangme/stationary-z-curve.git"
},
"keywords": [
"z",
"stationary",
"curve"
],
"author": "Willin Wang",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/shiwangme/stationary-z-curve/issues"
},
"homepage": "https://github.com/shiwangme/stationary-z-curve#readme",
"dependencies": {},
"devDependencies": {
"ava": "^3.8.2",
"benchmark": "^2.1.4",
"codecov": "^3.7.0",
"eslint": "^7.1.0",
"eslint-config-shiwangme": "^1.0.2",
"husky": "^4.2.5",
"lint-staged": "^10.2.6",
"ngeohash": "^0.6.3",
"nyc": "^15.0.1",
"prettier": "^2.0.5"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"ava": {
"files": [
"test/**/*.js",
"!**/_*/*.js",
"!**/_*.js"
]
},
"nyc": {
"lines": 80,
"check-coverage": true,
"reporter": [
"text-lcov"
],
"report-dir": "./.nyc_output",
"exclude": [
"test",
"test{,-*}.js",
"**/*.test.js",
"**/__tests__/**"
]
},
"engines": {
"node": ">=12.0"
}
}