-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
59 lines (59 loc) · 1.39 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
54
55
56
57
58
59
{
"name": "iso3166-2-db",
"version": "2.3.11",
"description": "Provides information about countries and states of the world.",
"main": "lib/iso3166.js",
"scripts": {
"test": "npm run test:pick -- 'tests/**/*.spec.js'",
"test:pick": "BABEL_ENV=test mocha --compilers js:babel-core/register",
"build": "babel src -d lib",
"prepublish": "npm run build && node ./bin/prepublish.js",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix"
},
"files": [
"data",
"mapping",
"lib",
"i18n",
"regions",
"countryList",
"api.js",
"combine.js"
],
"repository": {
"type": "git",
"url": "https://github.com/esosedi/3166.git"
},
"keywords": [
"3166",
"3166-2",
"iso3166-2",
"iso3166",
"iso-3166",
"iso-3166-1",
"iso-3166-2",
"countries",
"regions",
"states",
"opendata"
],
"author": "Kashey <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/esosedi/3166/issues"
},
"homepage": "https://github.com/esosedi/3166",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.2.3",
"babel-preset-latest": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-plugin-mocha": "^4.9.0",
"mocha": "^3.3.0",
"node-fetch": "^2.6.0",
"proxyquire-webpack-alias": "^1.0.7"
}
}