-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 844 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
{
"name": "rubiks-cube",
"version": "3.0.0",
"description": "Simple JavaScript modeling of a 3x3x3 Rubik's Cube.",
"main": "cube.js",
"scripts": {
"test": "mocha || true"
},
"keywords": [
"rubiks",
"cube",
"3x3x3",
"random",
"state",
"generator"
],
"repository": {
"type": "git",
"url": "https://github.com/pedroteosousa/rubiks-cube.git"
},
"author": "Pedro Sousa <pedroteosousa@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pedroteosousa/rubiks-cube/issues"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.4.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^3.1.0",
"mocha": "^4.0.1"
}
}