-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.1 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
{
"name": "fuzzy-dates",
"version": "0.5.0",
"description": "Fuzzy dates module for Histograph",
"main": "./index.js",
"keywords": [
"time",
"date",
"fuzzy"
],
"dependencies": {
"is-my-json-valid": "^2.12.1",
"moment": "^2.10.6"
},
"devDependencies": {
"jscs": "^1.13.1",
"jshint": "^2.8.0",
"mocha": "^2.2.5"
},
"scripts": {
"start": "node index.js",
"test": "jshint *.js && jscs *.js && node_modules/.bin/mocha test/test.js"
},
"repository": {
"type": "git",
"url": "http://github.com/histograph/fuzzy-dates.git"
},
"author": "Bert Spaan <[email protected]>",
"contributors": [
{
"name": "Bert Spaan",
"email": "[email protected]"
},
{
"name": "Jelle Herold",
"email": "[email protected]"
}
],
"license": "MIT",
"jshintConfig": {
"node": true,
"globalstrict": false,
"undef": true,
"unused": true,
"noarg": true
},
"jscsConfig": {
"preset": "airbnb",
"requireCamelCaseOrUpperCaseIdentifiers": null,
"disallowMultipleVarDecl": true,
"requireMultipleVarDecl": null
}
}