-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.69 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
{
"name": "magic-cubes",
"version": "0.4.1",
"description": "JavaScript library for simulating the Rubik's cube and working with algorithms.",
"keywords": [
"rubik's cube",
"magic cube",
"algorithm"
],
"repository": "https://github.com/dd-jonas/magic-cubes.git",
"bugs": "https://github.com/dd-jonas/magic-cubes.git/issues",
"homepage": "https://github.com/dd-jonas/magic-cubes.git",
"author": "dd-jonas",
"license": "MIT",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"files": [
"lib/"
],
"sideEffects": false,
"scripts": {
"build": "rimraf lib && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"format": "prettier src --write",
"lint": "eslint src --ext .ts --fix",
"test": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest run",
"prepublishOnly": "yarn format && yarn lint && yarn test:ci && yarn build",
"preversion": "yarn format && yarn lint && yarn test:ci",
"version": "git add -A",
"postversion": "git push && git push --tags"
},
"dependencies": {
"@ungap/structured-clone": "^0.3.4"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@types/ungap__structured-clone": "^0.3.0",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"@vitest/ui": "^0.20.2",
"c8": "^7.12.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.2",
"vitest": "^0.20.2"
}
}