-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
42 lines (41 loc) · 1.14 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
{
"name": "wow-model-viewer",
"version": "1.5.1",
"description": "Generate World of Warcraft 3D model with body parts customization and items.",
"engines": {
"node": ">=16.0.0 <19.0.0"
},
"main": "index.js",
"types": "./types/index.d.ts",
"scripts": {
"prepublish": "npx -p typescript tsc index.js wow_model_viewer.js --declaration --allowJs --emitDeclarationOnly --outDir types",
"test": "jest",
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Miorey/wow-model-viewer.git"
},
"keywords": [
"Wow",
"World of warcraft",
"3d viewer"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Miorey/wow-model-viewer/issues"
},
"homepage": "https://github.com/Miorey/wow-model-viewer#readme",
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"eslint": "^8.50.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"node-fetch": "^2.7.0",
"npm": "^9.6.4",
"typescript": "^5.0.4"
}
}