forked from ronatskiy/country-flags-svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.06 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
{
"name": "country-flags-svg",
"version": "0.2.1",
"description": "A list of countries with url links to a svg image which you can simply use in your web application",
"main": "dist/index.js",
"files": [
"dist"
],
"engines": {
"node": ">= 6"
},
"scripts": {
"clean": "rimraf dist coverage",
"build": "./node_modules/.bin/babel src --out-dir dist",
"test": "jest",
"test-coverage": "jest --coverage",
"prepublish": "yarn run clean && yarn run test && yarn run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ronatskiy/country-flags-svg.git"
},
"keywords": [
"country",
"flags",
"svg",
"country-flags"
],
"author": "Roman Onatskiy",
"license": "MIT",
"bugs": {
"url": "https://github.com/ronatskiy/country-flags-svg/issues"
},
"homepage": "https://github.com/ronatskiy/country-flags-svg#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"codecov": "^3.0.2",
"coveralls": "^3.0.1",
"jest": "^23.1.0",
"rimraf": "^2.6.2"
},
"babel": {
"presets": [
"env"
]
}
}