-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
81 lines (81 loc) · 2.07 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "iso3166-1",
"version": "0.5.1",
"reveal": true,
"description": "Tiny, fast, modular ISO 3166-1 alpha-2/alpha-3 parser.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/moimikey/iso3166-1.git"
},
"keywords": [
"codes",
"countries",
"country",
"countrycode",
"countrycodes",
"iso",
"iso3166",
"iso3166-1",
"locale",
"locale2"
],
"author": "Michael Scott Hertzberg <[email protected]> (https://hertzber.gs/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/moimikey/iso3166-1/issues"
},
"homepage": "https://github.com/moimikey/iso3166-1",
"standard": {
"env": [
"jest"
],
"ignore": [
"dist/**",
"data/**"
]
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.1.0",
"babel-minify": "^0.5.1",
"babel-plugin-static-fs": "^3.0.0",
"browserify": "^16.5.0",
"csv2": "^0.1.1",
"dist-size": "^0.4.0",
"event-stream": "^4.0.1",
"file-size": "^1.0.0",
"hyperquest": "^2.1.3",
"jest": "^25.1.0",
"jsonstream2": "^3.0.0",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"standard": "^14.3.1",
"through2": "^3.0.1"
},
"scripts": {
"build": "npm-run-all -s clean mkdir compile minify build:* rmtmp size",
"build:dist": "browserify dist/.tmp/iso3166-1.minified.js -s iso31661 -o dist/iso3166-1.js",
"clean": "rimraf dist",
"compile": "babel -o dist/.tmp/iso3166-1.compiled.js src/index.js",
"generate": "bin/generate",
"lint": "standard src",
"mkdir": "mkdirp dist dist/.tmp",
"minify": "minify dist/.tmp/iso3166-1.compiled.js -o dist/.tmp/iso3166-1.minified.js",
"rmtmp": "rimraf dist/.tmp",
"size": "dist-size -e js dist",
"test": "jest",
"test:browser": "npx serve test-browser"
},
"jest": {
"transform": {},
"rootDir": "src",
"testPathIgnorePatterns": [
"node_modules"
]
}
}