-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
56 lines (56 loc) · 1.51 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
{
"name": "country-flag-emoji",
"version": "1.0.3",
"description": "List of country codes and its flag emojis",
"keywords": [
"country",
"country-code",
"emoji",
"flag",
"iso-3166"
],
"homepage": "https://github.com/risan/country-flag-emoji#readme",
"bugs": {
"url": "https://github.com/risan/country-flag-emoji/issues"
},
"license": "MIT",
"author": {
"name": "Risan Bagja Pradana",
"email": "[email protected]",
"url": "https://bagja.net"
},
"main": "dist/country-flag-emoji.cjs.js",
"browser": "dist/country-flag-emoji.umd.js",
"repository": {
"type": "git",
"url": "https://github.com/risan/country-flag-emoji.git"
},
"scripts": {
"build": "NODE_ENV=build rollup -c",
"lint": "eslint ./",
"lint-fix": "eslint ./ --fix",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"test": "NODE_ENV=test jest"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"eslint": "^6.0.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"jest": "^23.6.0",
"prettier": "^1.15.2",
"rollup": "^1.0.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-terser": "^5.0.0"
},
"engines": {
"node": ">=10.0.0"
}
}