-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.89 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "gameoflife",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"coverage": "jest --coverage",
"test": "jest ",
"precommit": "lint-staged",
"dev": "webpack-dev-server --open --config ./build/webpack.dev.conf.js",
"build": "webpack --config ./build/webpack.build.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DimaBarokha/gameOfLife.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DimaBarokha/gameOfLife/issues"
},
"homepage": "https://github.com/DimaBarokha/gameOfLife#readme",
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"browserslist": [
">1%",
"last 3 version"
],
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"autoprefixer": "^9.4.7",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"copy-webpack-plugin": "^4.6.0",
"coveralls": "^3.0.2",
"css-loader": "^2.1.0",
"css-mqpacker": "^7.0.0",
"cssnano": "^4.1.10",
"eslint": "^5.13.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"istanbul": "^0.4.5",
"istanbul-middleware": "^0.2.2",
"jest": "^24.1.0",
"lint-staged": "^8.1.4",
"mini-css-extract-plugin": "^0.5.0",
"mocha": "^5.2.0",
"node-sass": "^4.11.0",
"nyc": "^13.3.0",
"path": "^0.12.7",
"postcss-loader": "^3.0.0",
"pre-commit": "^1.2.2",
"prettier": "^1.16.4",
"prettier-eslint": "^8.8.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.29.4",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
},
"lint-staged": {
"src/js/*.js": [
"eslint src/js/common.js",
"git add"
]
}
}