-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "sr-puzzlegen",
"version": "1.0.4",
"description": "Generate WCA puzzle images",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"build": "webpack",
"build:demos": "webpack --config webpack.demos.config.js",
"dev": "webpack serve --open --config webpack.demos.config.js",
"test": "jest",
"test:coverage": "jest --coverage",
"fmt": "prettier --write ."
},
"author": "tdecker91",
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"bufferutil": "^4.0.6",
"canvas": "^2.9.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.5.1",
"prettier": "2.5.1",
"terser-webpack-plugin": "^5.3.1",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.7",
"ts-node": "^10.6.0",
"typescript": "^4.6.2",
"utf-8-validate": "^5.0.8",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"repository": {
"type": "git",
"url": "git://github.com/tdecker91/puzzle-visualizer.git"
},
"files": [
"/dist",
"LICENSE"
]
}