-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 930 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
41
42
{
"name": "pelias-analysis",
"version": "0.0.0-development",
"author": "Pelias",
"description": "Analysis libraries",
"homepage": "https://github.com/pelias/analysis",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "node test/units.js | tap-spec",
"funcs": "node test/funcs.js | tap-spec",
"ci": "npm run test && npm run funcs",
"analyzer": "node analyzer/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/pelias/analysis.git"
},
"keywords": [
"pelias",
"analysis"
],
"bugs": {
"url": "https://github.com/pelias/analysis/issues"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"batch-replace": "^1.1.3",
"inflection": "^1.12.0",
"remove-accents": "^0.4.1",
"require-dir": "^1.0.0"
},
"devDependencies": {
"tap-spec": "^5.0.0",
"tape": "^4.6.3"
},
"release": {
"success": []
}
}