forked from risan/country-flag-emoji-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.23 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
{
"name": "country-flag-emoji-json",
"version": "1.0.2",
"description": "Country flag emojis in JSON format",
"keywords": [
"country",
"country-code",
"emoji",
"flag",
"iso-3166"
],
"homepage": "https://github.com/risan/country-flag-emoji-json#readme",
"bugs": {
"url": "https://github.com/risan/country-flag-emoji-json/issues"
},
"license": "MIT",
"author": {
"name": "Risan Bagja Pradana",
"email": "[email protected]",
"url": "https://bagja.net"
},
"main": "json/flag-emojis.pretty.json",
"repository": {
"type": "git",
"url": "https://github.com/risan/country-flag-emoji-json.git"
},
"scripts": {
"build": "scripts/build.js",
"lint": "eslint ./",
"lint-fix": "eslint ./ --fix",
"prepublishOnly": "npm run lint && npm run test",
"test": "npm run build && jest"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"jest": "^23.6.0",
"lodash.keyby": "^4.6.0",
"prettier": "^1.15.2",
"rimraf": "^2.6.2",
"write-to-file": "^1.0.1"
},
"engines": {
"node": ">=11.0.0"
}
}