-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.58 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
53
54
{
"name": "@pandanoir/rubikscube",
"version": "0.1.0",
"description": "simulating Rubik's Cube in JavaScript",
"main": "dist/cube.js",
"types": "dist/cube.d.ts",
"files": [
"dist",
"LICENSE",
"README.md",
"package-lock.json",
"package.json"
],
"scripts": {
"preversion": "npm test",
"version": "npm run build && git add package.json package-lock.json",
"postversion": "git push && git push --tags",
"test": "jest --coverage -c config/jest.config.js",
"build": "webpack --progress --mode production --config config/webpack.config.js",
"build:dev": "webpack --progress --config config/webpack.config.js",
"watch": "webpack --watch --config config/webpack.config.js"
},
"eslintConfig": {
"extends": "./config/eslintrc.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pandanoir/rubikscube.git"
},
"author": "Naoto Ikuno <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pandanoir/rubikscube/issues"
},
"homepage": "https://github.com/pandanoir/rubikscube#readme",
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^14.11.1",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"prettier": "^2.1.1",
"ts-jest": "^26.3.0",
"ts-loader": "^5.4.5",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"typescript": "^4.0.2"
}
}