-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
58 lines (58 loc) · 1.37 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": "world-cup-cli-dashboard",
"version": "1.7.1",
"main": "dist/index.js",
"module": "src/index.jsx",
"bin": {
"wc2018": "bin/wc2018"
},
"repository": "https://github.com/cedricblondeau/world-cup-2018-cli-dashboard",
"author": "Cédric Blondeau",
"license": "MIT",
"private": false,
"engines": {
"node": ">=6"
},
"scripts": {
"start": "babel-node ./src/index.jsx",
"lint": "eslint 'src/**/*.jsx' 'src/**/*.js'",
"test": "jest",
"prepublish": "yarn build",
"build": "babel src --out-dir dist"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.9.1",
"jest": "^23.2.0",
"prettier": "^1.13.5",
"react-test-renderer": "^16.4.1"
},
"dependencies": {
"blessed": "^0.1.81",
"chalk": "^2.4.1",
"moment": "^2.22.2",
"node-notifier": "^5.2.1",
"prop-types": "^15.6.1",
"react": "^16.4.1",
"react-blessed": "^0.2.1"
},
"keywords": [
"worldcup",
"soccer",
"football",
"cli"
],
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
]
}
}