-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.53 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
{
"name": "boardgame",
"version": "0.0.2",
"description": "Coming soon",
"license": "Apache-2.0",
"main": "lib/index.js",
"browser": "lib/index.js",
"homepage": "https://github.com/pauldijou/boardgame",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/pauldijou/boardgame/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/pauldijou/boardgame.git"
},
"author": {
"email": "[email protected]",
"name": "Paul Dijou",
"url": "http://pauldijou.fr"
},
"keywords": [
"board",
"game",
"map"
],
"dependencies": {
"armillary": "^0.1.2",
"fast-simplex-noise": "^2.1.1",
"voronoi": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"md5-file": "^2.0.4",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"scripts": {
"clean": "rm -rf lib",
"build": "babel src --out-dir lib",
"prepublish": "npm run clean && npm run build",
"demo": "webpack-dev-server --config ./webpack.config.js --hot --inline",
"demo:clean": "rm -rf dist",
"demo:webpack": "webpack --config ./webpack.config.js",
"demo:copy": "cp ./demo/index.html ./dist && cp ./demo/styles.css ./dist",
"demo:hash": "node ./hash.js",
"demo:build": "npm run demo:clean && mkdir dist -p && npm run demo:webpack && npm run demo:copy && npm run demo:hash",
"deploy": "npm run demo:build && ./deploy.sh -m 'Deploy demo'"
}
}