-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 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": "cheatermind",
"version": "1.0.2",
"description": "MasterMind clone where the computer delays choosing the code as long as possible, while still leaving all previously given data true.",
"main": "index.js",
"scripts": {
"build": "rollup -c",
"build:test": "npm test && rollup -c",
"build:watch": "npm run build -- -w",
"lint": "eslint ./src/**",
"test": "ospec"
},
"repository": {
"type": "git",
"url": "git://github.com/IBwWG/cheatermind.git"
},
"keywords": [
"game",
"ai"
],
"author": "KJB",
"license": "MIT",
"bugs": {
"url": "https://github.com/IBwWG/cheatermind/issues"
},
"homepage": "https://github.com/IBwWG/cheatermind#readme",
"dependencies": {
"mithril": "^1.0.1"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-3": "^6.17.0",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"rimraf": "^2.5.4",
"rollup": "^0.36.4",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-commonjs": "^8.0.0",
"rollup-plugin-eslint": "^3.0.0",
"rollup-plugin-svelte": "^1.0.0",
"rollup-watch": "^2.5.0",
"svelte": "^1.9.0"
}
}