-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.49 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
{
"name": "osrm-bindings",
"description": "The Open Source Routing Machine bindings for NodeJS",
"version": "1.2.0",
"main": "index.js",
"keywords": [
"osrm",
"osm",
"openstreetmap"
],
"author": "Stepan Kuzmin <[email protected]> (stepankuzmin.ru)",
"homepage": "https://github.com/stepankuzmin/osrm-bindings",
"repository": {
"type": "git",
"url": "git+https://github.com/stepankuzmin/osrm-bindings.git"
},
"bugs": {
"url": "https://github.com/stepankuzmin/osrm-bindings/issues"
},
"license": "BSD-2-Clause",
"engine-strict": true,
"engines": {
"node": "8.x"
},
"scripts": {
"cz": "git-cz",
"lint": "eslint .",
"test": "node index.test.js",
"release": "standard-version"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"yarn lint",
"git add"
]
},
"devDependencies": {
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.14.0",
"husky": "^2.0.0",
"lint-staged": "^8.1.0",
"osrm": "^5.19.0",
"prettier": "^1.15.3",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"standard-version": "^6.0.1",
"tape": "^4.9.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}