-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.15 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "cube-solver",
"version": "2.4.1",
"description": "Solve Rubik's cube using the Kociemba algorithm.",
"author": "Torjus Iveland <[email protected]>",
"main": "dist/bundle.js",
"type": "module",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/torjusti/cube-solver"
},
"files": [
"dist",
"index.d.ts"
],
"bugs": {
"url": "https://github.com/torjusti/cube-solver/issues"
},
"keywords": [
"rubiks",
"cube",
"solver",
"scrambler"
],
"license": "MIT",
"scripts": {
"build": "rollup -c",
"lint": "eslint .",
"test": "jest",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@babel/core": "^7.22.17",
"@babel/eslint-parser": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-terser": "^0.4.3",
"chance": "^1.1.11",
"eslint": "^8.49.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.6.4",
"rollup": "^3.29.1"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageDirectory": "./coverage"
}
}