forked from ronatskiy/country-flags-svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.31 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
{
"name": "country-flags-svg",
"version": "1.1.0",
"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": ">= 8"
},
"scripts": {
"clean": "rimraf dist coverage",
"build": "./node_modules/.bin/babel src --out-dir dist",
"test": "jest",
"test-coverage": "jest --coverage",
"prepare": "npm run clean && npm run test && npm run build",
"publish": "npm publish",
"update-docs": "md-magic --path ./README.md --ignore node_modules"
},
"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": "7.10.5",
"@babel/core": "7.11.0",
"@babel/preset-env": "7.11.0",
"babel-jest": "26.2.2",
"codecov": "3.7.2",
"coveralls": "3.1.0",
"jest": "23.6.0",
"markdown-magic": "0.1.25",
"pre-commit": "1.2.2",
"rimraf": "2.7.1"
},
"pre-commit": [
"update-docs",
"test"
],
"babel": {
"presets": [
"@babel/preset-env"
]
}
}