-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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
{
"name": "histograph-schemas",
"version": "0.5.1",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/histograph/schemas.git"
},
"bugs": {
"url": "https://github.com/histograph/schemas/issues"
},
"homepage": "https://github.com/histograph/schemas#readme",
"dependencies": {
"n3": "^0.4.2",
"fuzzy-dates": "git+https://github.com/histograph/fuzzy-dates#v0.5.0",
"histograph-config": "git+https://github.com/histograph/config#v0.5.1"
},
"devDependencies": {
"mocha": "^2.2.1",
"jscs": "^1.10.0",
"jshint": "^2.6.0"
},
"scripts": {
"test": "jshint *.js && jscs *.js"
},
"author": "Bert Spaan <[email protected]>",
"license": "MIT",
"jshintConfig": {
"node": true,
"globalstrict": false,
"undef": true,
"unused": true,
"noarg": true
},
"jscsConfig": {
"preset": "airbnb",
"requireCamelCaseOrUpperCaseIdentifiers": null,
"disallowMultipleVarDecl": true,
"requireMultipleVarDecl": null
}
}