-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
58 lines (58 loc) · 1.26 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": "react-flags",
"version": "0.1.18",
"description": "Flags of the world",
"repository": {
"type": "git",
"url": "wiredmax/react-flags"
},
"scripts": {
"build": "rm -rf ./lib && webpack --production",
"start": "webpack-dev-server --development",
"lint": "eslint ./src ./*.js",
"test": "npm run lint"
},
"main": "lib/react-flags.js",
"directories": {
"lib": "lib/",
"vendor": "vendor/"
},
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"lib",
"vendor"
],
"keywords": [
"react",
"ecosystem-react",
"react-component",
"flags",
"flag"
],
"author": "Maxime Poulin <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react": "0.13 - 16.x"
},
"devDependencies": {
"babel": "^5.5.6",
"babel-eslint": "^3.1.16",
"babel-loader": "^5.1.4",
"eslint": "^0.23.0",
"eslint-loader": "^0.14.0",
"eslint-plugin-react": "^2.5.0",
"eslint-plugin-shadow-exception": "^1.1.1",
"filter-loader": "^1.0.1",
"json-loader": "^0.5.2",
"json5-loader": "^0.6.0",
"lodash": "^4.17.5",
"webpack": "^1.9.10",
"webpack-dev-server": "^1.16.5",
"world-countries": "^1.7.3"
},
"dependencies": {
"prop-types": "^15.5.10"
}
}