-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.38 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
{
"name": "cmd-world",
"version": "0.0.1",
"description": "Source of a hackNet inspired game",
"main": "src/js/main.js",
"scripts": {
"clean": "rm -rf dist/*",
"build:js:webpack": "webpack --config config/webpack.config.js",
"build:js": "node scripts/jsCompile.js ; npm run build:js:webpack",
"build:css": "node-sass src/css/index.scss --output-style compressed > dist/css/index.css",
"build:html": "node scripts/htmlCompile.js",
"build": "npm run clean ; npm run build:js ; npm run build:css ; npm run build:html",
"test": "npm run build:js:webpack ; mocha -r jsdom-global/register \"src/js/**/*.test.js\" --exit",
"start": "npm run build && browser-sync start --config config/bs-config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/storm1er/cmdWorld.git"
},
"keywords": [
"game",
"online",
"hacking-simulation"
],
"author": "storm1er",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/storm1er/cmdWorld/issues"
},
"homepage": "https://github.com/storm1er/cmdWorld#readme",
"devDependencies": {
"browser-sync": "^2.18.13",
"jsdom": "^11.3.0",
"jsdom-global": "^3.0.2",
"mocha": "^4.0.1",
"ncp": "^2.0.0",
"node-sass": "^4.5.3",
"webpack": "^3.6.0",
"ajv": "^5.0.0"
},
"dependencies": {
"jquery": "^3.2.1",
"rethinkdb-websocket-client": "^0.5.1"
}
}