-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 1.69 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
76
77
{
"name": "geojson-clustering",
"version": "1.1.5",
"description": "Clustering geoJSON with k-means",
"main": "index.js",
"scripts": {
"prepublishOnly": "nsp audit --audit-level high",
"pretest": "eslint .",
"precommit": "lint-staged && npm run test",
"test": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"start": "node index.js",
"clean": "node src/clean.js"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": [
"xo",
"prettier"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"printWidth": 90
}
]
},
"plugins": [
"prettier"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/rickyplouis/addressClustering.git"
},
"keywords": [
"k-means",
"geoJSON",
"clustering",
"machine-learning"
],
"author": "rickyplouis",
"license": "MIT",
"bugs": {
"url": "https://github.com/rickyplouis/addressClustering/issues"
},
"homepage": "https://github.com/rickyplouis/addressClustering#readme",
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.12.1",
"eslint-config-prettier": "^3.6.0",
"eslint-config-xo": "^0.26.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"prettier": "^1.16.1"
}
}