-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.81 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.81 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
{
"name": "coin",
"version": "1.0.0",
"description": "Automated Bots for COIN Games",
"main": "src/main.js",
"directories": {
"src": "src",
"doc": "docs",
"test": "test",
"web": "web"
},
"dependencies": {
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"babel-loader": "^7.0.0",
"extract-text-webpack-plugin": "^2.1.2",
"bootstrap-loader": "^2.1.0",
"css-loader": "^0.28.4",
"node-sass": "^4.5.3",
"bootstrap-sass": "^3.3.7",
"file-loader": "^0.11.2",
"style-loader": "^0.18.2",
"resolve-url-loader": "^2.1.0",
"jquery": "^3.2.1",
"webpack-dev-server": "^2.4.5",
"sass-loader": "^6.0.6",
"url-loader": "^0.5.9",
"webpack": "^2.6.1"
},
"devDependencies": {
"chai": "^4.0.2",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.4",
"karma": "^1.7.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.1.1",
"karma-mocha": "^1.3.0",
"karma-sinon": "^1.0.5",
"karma-webpack": "^2.0.3",
"mocha": "^3.4.2",
"node-sass": "^4.5.3",
"resolve-url-loader": "^2.1.0",
"sass-loader": "^6.0.6",
"short-uuid": "^2.3.4",
"sinon": "^2.3.5",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"uuid": "^3.1.0"
},
"scripts": {
"start": "./node_modules/.bin/webpack-dev-server --open --inline --hot",
"test-once": "./node_modules/.bin/karma start --single-run",
"test": "./node_modules/.bin/karma start",
"bundle": "./node_modules/.bin/webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/justinkwaugh/COIN.git"
},
"author": "Justin Waugh",
"license": "ISC",
"bugs": {
"url": "https://github.com/justinkwaugh/COIN/issues"
},
"homepage": "https://github.com/justinkwaugh/COIN"
}