-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
46 lines (46 loc) · 957 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
43
44
45
46
{
"name": "us",
"description": "A package for easily working with US and state metadata",
"author": "Patrick Way <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/patsplat/javascript-us.git"
},
"version": "2.0.0",
"main": "us.js",
"scripts": {
"test": "tape test/**/*.js | tap-spec"
},
"engines": {
"node": ">= 0.4.1"
},
"devDependencies": {
"tap-spec": "^4.1.1",
"tape": "^4.6.2"
},
"jshintConfig": {
"globals": {
"define": false
},
"curly": true,
"eqeqeq": true,
"eqnull": true,
"esnext": true,
"forin": true,
"freeze": true,
"futurehostile": true,
"latedef": "nofunc",
"maxdepth": 3,
"maxparams": 4,
"maxstatements": 30,
"noarg": true,
"nocomma": true,
"node": true,
"nonbsp": true,
"nonew": true,
"singleGroups": false,
"strict": "global",
"undef": true,
"unused": true
}
}