-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.6 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
{
"name": "ps99-api",
"version": "1.0.1",
"description": "Pet Simulator Public API wrapper written in Typescript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "joekiller",
"license": "MIT",
"scripts": {
"test": "npx jest --testPathIgnorePatterns ps99-api-changes.ts",
"test:changing": "npx jest src/__tests__/ps99-api-changes.ts",
"test:snapshot": "npx jest --testPathIgnorePatterns ps99-api-changes.ts --updateSnapshot",
"test:snapshot-changing": "npx jest src/__tests__/ps99-api-changes.ts --updateSnapshot",
"build": "npx tsc",
"build:src": "esbuild src/index.ts --bundle --minify --sourcemap --outfile=dist/index.js",
"semantic-release": "npx semantic-release",
"format": "npx prettier --write .",
"build:types": "npx dets src/index.ts --files src/**/*.ts --out dist/index.d.ts"
},
"keywords": [
"pet simulator 99"
],
"devDependencies": {
"@jest/globals": "^29.7.0",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node20": "^20.1.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"cz-conventional-changelog": "^3.3.0",
"dets": "^0.16.0",
"esbuild": "0.21.5",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"semantic-release": "^24.0.0",
"ts-jest": "^29.1.5",
"typescript": "^5.5.3"
},
"dependencies": {
"axios": "^1.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joekiller/node-ps99-api.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"main"
]
}
}