-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.85 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "jsettlers-web",
"version": "0.0.1",
"description": "a hexagonal game to build settlements, cities & roads",
"main": "index.js",
"scripts": {
"dev": "npm-run-all generate-antlr generate-proto --parallel watchify serve",
"generate-antlr": "java -jar \"node_modules/antlr4-cli-471/bin/antlr-4.7.1-complete.jar\" -Dlanguage=JavaScript jsettlers.g4 -o src/generated",
"generate-proto": "node \"node_modules/protobufjs/cli/bin/pbjs\" -t static-module -w es6 -o \"src/generated/data.js\" data.proto",
"watchify": "watchify -vd -p browserify-hmr -t [ browserify-css index.css ] -e index.js -o dist/build.js",
"serve": "http-server -o -c 1 -a localhost",
"test": "mocha --recursive --require babel-core/register ./test/testSetup.js ./test",
"script": "mocha --require babel-core/register ./test/scriptTest.js",
"build-debug": "browserify -t [ browserify-css index.css ] -e index.js -o dist/build.js",
"build-release": "browserify -p tinyify -t [ browserify-css index.css ] -e index.js -o dist/build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/generateui/jsettlers-web.git"
},
"author": "Ruud Poutsma",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/generateui/jsettlers-web/issues"
},
"homepage": "https://github.com/generateui/jsettlers-web",
"dependencies": {
"antlr4": "^4.7.1",
"circular-json": "^0.5.1",
"circular-json-es6": "^2.0.2",
"protobufjs": "^6.8.6",
"three-js": "^79.0.0",
"tinyify": "^2.4.0",
"vue": "^2.0.1",
"vue-directive-tooltip": "^1.4.2",
"vue-markdown": "^2.2.4",
"vue-popperjs": "^1.2.5"
},
"browser": {
"vue": "vue/dist/vue.common.js"
},
"devDependencies": {
"antlr4-cli-471": "^4.7.1",
"babel-core": "^6.26.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.0.0",
"babel-runtime": "^6.0.0",
"babelify": "^7.2.0",
"browserify": "^13.1.0",
"browserify-css": "^0.14.0",
"browserify-hmr": "^0.3.1",
"chai": "^4.1.2",
"cross-env": "^2.0.0",
"envify": "^3.4.1",
"http-server": "^0.9.0",
"mocha": "^5.0.4",
"npm-run-all": "^2.3.0",
"vue-router": "^3.0.1",
"vueify": "^9.4.1",
"watchify": "^3.4.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
],
"plugins": [
"transform-runtime",
"transform-async-to-generator"
]
}
],
"vueify",
"browserify-css"
]
},
"babel": {
"presets": [
"es2015"
]
},
"browserify-css": {
"autoInject": false,
"minify": false,
"rootDir": ".",
"output": "dist/build.css"
}
}