forked from annexare/Countries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.79 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
{
"name": "countries-list",
"version": "2.6.1",
"description": "Continents & countries: ISO 3166-1 alpha-2 code, name, ISO 639-1 languages, capital, currency, native name, phone. JSON, CSV and SQL.",
"main": "./dist/index.es5.min.js",
"repository": {
"type": "git",
"url": "https://github.com/annexare/Countries"
},
"keywords": [
"country",
"countries",
"continent",
"emoji",
"languages",
"capital",
"currency",
"data",
"csv",
"json",
"sql",
"typings",
"ISO 3166-1",
"ISO 639-1",
"node"
],
"author": {
"name": "Dmytro",
"email": "[email protected]",
"url": "https://github.com/z-ax"
},
"scripts": {
"build": "gulp && npm run test",
"build-js": "gulp es5.min",
"test": "jest",
"lint": "eslint"
},
"typings": "./dist/index.d.ts",
"devDependencies": {
"@rollup/plugin-babel": "~5.3.0",
"@rollup/plugin-commonjs": "~17.1.0",
"@rollup/plugin-json": "~4.1.0",
"@rollup/plugin-node-resolve": "~11.2.0",
"eslint": "~7.21.0",
"gulp": "~4.0.2",
"husky": "~5.1.3",
"jest": "~26.6.3",
"lint-staged": "~10.5.4",
"prettier": "2.2.1",
"punycode": "2.1.1",
"rollup": "~2.40.0",
"rollup-plugin-terser": "~7.0.2"
},
"devEngines": {
"node": ">=8.14.1"
},
"jest": {
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
".*\\.min\\.js"
],
"testEnvironment": "jsdom",
"verbose": true
},
"license": "MIT",
"bugs": {
"url": "https://github.com/annexare/Countries/issues"
},
"homepage": "http://annexare.github.io/Countries/",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}