-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 939 Bytes
/
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
{
"name": "cube",
"version": "1.0.0",
"description": "rubik's cube solver",
"main": "index.js",
"dependencies": {
"kociemba": "^1.0.1"
},
"devDependencies": {
"dool": "^4.3.7",
"eslint": "^7.8.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jquery": "^3.5.1",
"skmeans": "^0.11.3"
},
"scripts": {
"lint": "eslint src api",
"build": "rm -rf public && dool build && cp index.html public",
"start": "dool server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/d-band/cube.git"
},
"keywords": [
"rubik's",
"cube",
"solver"
],
"author": "d-band",
"license": "MIT",
"bugs": {
"url": "https://github.com/d-band/cube/issues"
},
"homepage": "https://github.com/d-band/cube#readme"
}