-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.44 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.44 KB
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
{
"name": "histograph-io",
"version": "0.5.1",
"description": "Histograph IO API",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/histograph/io.git"
},
"dependencies": {
"async": "^0.9.2",
"basic-auth": "^1.0.3",
"bcrypt": "^0.8.5",
"body-parser": "^1.14.1",
"busboy": "^0.2.11",
"cors": "^2.7.1",
"elasticsearch": "^8.2.0",
"express": "^4.13.3",
"fs-extra": "^0.16.5",
"geojsonhint": "^1.1.0",
"highland": "^2.5.1",
"diff-utility": "git+https://github.com/histograph/node-diff-utility#v0.5.0",
"histograph-config": "git+https://github.com/histograph/config#v0.5.1",
"histograph-schemas": "git+https://github.com/histograph/schemas#v0.5.1",
"is-my-json-valid": "^2.12.2",
"ndjson": "^1.4.2",
"neo4j": "^2.0.0-alpha5",
"passport": "^0.2.2",
"passport-http": "^0.2.2",
"redis": "^0.12.1",
"request": "^2.65.0"
},
"devDependencies": {
"jscs": "^1.10.0",
"jshint": "^2.6.0",
"tape": "^3.4.0"
},
"scripts": {
"test": "jshint index.js lib && jscs index.js lib"
},
"author": "Bert Spaan",
"license": "MIT",
"jshintConfig": {
"node": true,
"globalstrict": false,
"undef": true,
"unused": true,
"noarg": true
},
"jscsConfig": {
"preset": "airbnb",
"requireCamelCaseOrUpperCaseIdentifiers": null,
"disallowMultipleVarDecl": true,
"requireMultipleVarDecl": null
}
}