-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
59 lines (59 loc) · 1.79 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
{
"name": "way-of-life",
"version": "0.3.0",
"description": "Conway's game of life",
"repository": {
"type": "git",
"url": "git://github.com/blaze33/way-of-life.git"
},
"homepage": "https://blaze33.github.io/way-of-life/",
"bugs": {
"url": "https://github.com/blaze33/way-of-life/issues"
},
"main": "src/js/index.js",
"scripts": {
"demo": "webpack --config conf/webpack.config.demo.js -p --env production",
"lab": "webpack --config conf/webpack.config.embed.js -p --env production",
"build": "npm run demo && npm run lab",
"watch": "webpack --config conf/webpack.config.demo.js --watch",
"serve": "webpack-dev-server --config conf/webpack.config.demo.js --open",
"serveLab": "webpack-dev-server --config conf/webpack.config.embed.js --open",
"test": "standard src/**/*.js conf/webpack.config.*.js",
"fix": "standard src/**/*.js conf/webpack.config.*.js --fix"
},
"keywords": [
"conway",
"game",
"game of life"
],
"author": {
"name": "Maxime Rouyrre",
"url": "http://www.openbloc.fr/"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^3.0.0",
"glob": "^7.1.4",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^5.0.0",
"node-sass": "^4.12.0",
"normalize.css": "^8.0.1",
"purify-css": "^1.2.5",
"purifycss-webpack": "^0.7.0",
"query-string": "^6.8.1",
"sass-loader": "^7.1.0",
"standard": "^12.0.1",
"style-loader": "^0.23.1",
"surface": "github:blaze33/surface",
"wasm-loader": "^1.3.0",
"webpack": "^4.35.2",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {}
}