-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.97 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@ryunen344/apkstats-js",
"version": "0.0.5",
"repository": "https://github.com/RyuNen344/apkstats-js",
"author": "RyuNen344",
"license": "MIT",
"engines": {
"npm": "⚠️ plz use yarn instead ⚠️"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"build:dev": "ts-node -r tsconfig-paths/register ./src/index.ts",
"test": "jest",
"test:ci": "jest --json --coverage > test-results.json",
"coverage": "jest --coverage",
"docs": "typedoc",
"package": "run-s clean build",
"clean": "rimraf dist coverage docs",
"lint": "eslint '{src,test}/**/*.{ts,tsx}'",
"lint:ci": "eslint '{src,test}/**/*.{ts,tsx}' -f checkstyle > lint-results.xml",
"format": "prettier --write {src,test}/**/*.ts",
"upgrade": "yarn upgrade --latest",
"pub": "run-s package && npm publish"
},
"jest": {
"verbose": true,
"moduleNameMapper": {
"^@/(.+)$": "<rootDir>/src/$1"
},
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
},
"coverageDirectory": "coverage"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^18.12.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"danger": "^11.3.1",
"danger-plugin-coverage": "^1.6.2",
"danger-plugin-jest": "^1.3.0",
"danger-plugin-lint-report": "^1.8.1",
"danger-plugin-yarn": "^1.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"rmraf": "^1.0.3",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"typedoc": "^0.25.8",
"typescript": "^5.3.3"
},
"dependencies": {
"xml-js": "^1.6.11"
}
}