-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.45 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.45 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
{
"name": "histograph-core",
"version": "0.5.1",
"description": "Read from Redis and index to Graphmalizer and Elasticsearch",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "jshint index.js && jscs index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/histograph/core.git"
},
"author": "Jelle 'wires' Herold <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/histograph/core/issues"
},
"homepage": "https://github.com/histograph/core",
"dependencies": {
"elasticsearch": "^8.2.0",
"highland": "^2.5.1",
"fuzzy-dates": "git+https://github.com/histograph/fuzzy-dates#v0.5.0",
"graphmalizer-core": "git+https://github.com/graphmalizer/graphmalizer-core#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",
"histograph-uri-normalizer": "git+https://github.com/histograph/uri-normalizer#v0.5.0",
"minimist": "^1.1.3",
"redis": "^0.12.1"
},
"devDependencies": {
"mocha": "^2.2.1",
"jscs": "^1.10.0",
"jshint": "^2.6.0"
},
"jshintConfig": {
"node": true,
"globalstrict": false,
"undef": true,
"unused": true,
"noarg": true
},
"jscsConfig": {
"preset": "airbnb",
"requireCamelCaseOrUpperCaseIdentifiers": null,
"disallowMultipleVarDecl": true,
"requireMultipleVarDecl": null
}
}