forked from flbulgarelli/headbreaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.26 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
{
"name": "headbreaker",
"version": "3.0.0",
"description": "Jigsaw puzzles library for js",
"main": "src/index.js",
"types": "dist/headbreaker.d.ts",
"scripts": {
"test": "./node_modules/mocha/bin/mocha.js",
"all": "npm test && npm run build && npm run types && npm run api",
"build": "webpack --config webpack.prod.js",
"api": "node_modules/jsdoc-import-support/jsdoc.js src/ -d docs/api -R README.md; exit 0",
"types": "node_modules/jsdoc-import-support/jsdoc.js -t node_modules/tsd-jsdoc/dist/ -d dist/ -r src/; mv dist/types.d.ts dist/headbreaker.d.ts; exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flbulgarelli/headbreaker.git"
},
"author": "Franco Leonardo Bulgarelli",
"license": "ISC",
"bugs": {
"url": "https://github.com/flbulgarelli/headbreaker/issues"
},
"homepage": "https://github.com/flbulgarelli/headbreaker#readme",
"devDependencies": {
"clean-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^5.5.0",
"jsdoc-import-support": "^3.6.4",
"mocha": "^10.0.0",
"tsd-jsdoc": "^2.5.0",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^4.2.1"
},
"optionalDependencies": {
"konva": "^6.0.0"
}
}