-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "marionettes",
"version": "0.0.4",
"description": "A tool to edit and preview 3d-model postures.",
"keywords": [
"mannequin",
"puppet",
"marionette",
"skeleton",
"three",
"3d"
],
"homepage": "https://roipoussiere.frama.io/marionettes",
"bugs": "https://framagit.org/roipoussiere/marionettes/-/issues",
"license": "MIT",
"author": "Roipoussiere <[email protected]>",
"browser": "dist/marionettes.min.js",
"types": "dist/marionettes.d.ts",
"repository": {
"type": "git",
"url": "https://framagit.org/roipoussiere/marionettes"
},
"scripts": {
"test": "jest",
"dev": "webpack serve --config ./webpack.dev.js",
"build": "webpack --config ./webpack.prod.js",
"prepublish": "yarn run build",
"lint": "eslint src tests"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/three": "^0.142.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"jest": "^28.1.3",
"three": "^0.142.0",
"ts-jest": "^28.0.7",
"ts-loader": "^9.3.0",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2",
"webpack-merge": "^5.8.0"
}
}