-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.37 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.37 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
{
"name": "monster-world",
"version": "1.0.0",
"description": "JS Browser Video Game",
"main": "index.html",
"scripts": {
"test": "karma start",
"lint": "eslint ./scripts --fix --ext .js --cache",
"start": "node_modules/.bin/webpack-dev-server",
"build": "webpack --progress --colors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BrimstoneStudios/monster-world.git"
},
"author": "Brimestone Studios",
"license": "ISC",
"bugs": {
"url": "https://github.com/BrimstoneStudios/monster-world/issues"
},
"homepage": "https://github.com/BrimstoneStudios/monster-world#readme",
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.0.0-beta.1",
"babel-preset-env": "^1.2.2",
"babel-preset-es2015": "^6.24.0",
"eslint": "^3.11.1",
"eslint-loader": "^1.6.3",
"jasmine-core": "^2.5.2",
"karma": "^1.5.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-jasmine-diff-reporter": "^1.0.0",
"karma-webpack": "^2.0.3",
"webpack": "^2.3.1",
"webpack-dev-middleware": "^1.10.1",
"webpack-dev-server": "^2.4.2",
"webpack-uglify-js-plugin": "^1.1.9"
},
"dependencies": {
"webpack": "^2.3.1",
"webpack-dev-server": "^2.4.2"
}
}