forked from olahol/iso-3166-2.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 980 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": "iso-3166-2",
"description": "Lookup information about ISO-3166-2 subdivisions.",
"version": "1.0.0",
"author": "Ola Holmström <[email protected]>",
"keywords": [
"iso3166",
"iso-3166",
"iso-3166-2",
"geo"
],
"main": "./iso3166.min.js",
"repository": {
"type": "git",
"url": "http://github.com/olahol/iso-3166-2.js.git"
},
"devDependencies": {
"browserify": "^12.0.1",
"matcha": "*",
"tape": "*",
"testling": "^1.7.1",
"uglify-js": "^2.4.10",
"underscore": "^1.8.3"
},
"scripts": {
"test": "node ./test/index.js"
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/8..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/4..latest",
"opera/10.0..latest",
"iphone/6",
"ipad/6"
]
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/olahol/iso-3166-2.js/raw/master/LICENSE"
}
]
}