-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
43 lines (43 loc) · 1.41 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": "uasset-reader-js",
"version": "1.1.2",
"description": "Read .uasset files from Unreal Engine in javascript",
"scripts": {
"test": "jest --coverage --coverageDirectory=./coverage -- tests/main.test.js",
"build": "node build.cjs && uglifyjs dist/uasset-reader.js --mangle --webkit --compress \"drop_console=true,module=false,passes=5\" --comments \"/MIT License/\" -o dist/uasset-reader.min.js && jest",
"jsdoc": "jsdoc -c jsdoc.conf.json",
"eslint": "eslint --max-warnings=0 src/**/*.js tests/*.js",
"eslint:fix": "eslint --fix src/**/*.js tests/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blueprintue/uasset-reader-js.git"
},
"author": "Sébastien Rancoud <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/blueprintue/uasset-reader-js/issues"
},
"homepage": "https://github.com/blueprintue/uasset-reader-js",
"devDependencies": {
"@babel/core": "^7.26.0",
"@stylistic/eslint-plugin": "^2.13.0",
"@types/jest": "^29.5.14",
"eslint": "^9.18.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-jsdoc": "^50.6.2",
"globals": "^15.14.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdoc": "^4.0.4",
"uglify-js": "^3.19.3"
},
"type": "module",
"engines": {
"npm": ">=10.7.0",
"node": ">=22.1.0"
},
"jest": {
"testEnvironment": "jsdom"
}
}