-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
76 lines (76 loc) · 1.82 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
72
73
74
75
76
{
"name": "clashofclans.js",
"version": "3.3.16",
"description": "JavaScript library for interacting with the Clash of Clans API",
"author": "https://clashofclans.js.org",
"license": "MIT",
"main": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./api/": {
"import": "./dist/types/api.mjs",
"require": "./dist/types/api.js",
"types": "./dist/types/api.d.ts"
}
},
"scripts": {
"build": "tsc && gen-esm-wrapper dist/index.js dist/index.mjs",
"prepare": "rimraf dist && npm run build",
"lint:test": "eslint --ext .ts --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ext .ts --ignore-path .gitignore .",
"test": "TZ=UTC jest --setupFiles dotenv/config --config ./jest.config.json",
"test:watch": "npm run test -- --watch"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/clashperk/clashofclans.js.git"
},
"keywords": [
"clash-of-clans-api",
"clash-of-clans",
"clash-api",
"supercell",
"coc"
],
"bugs": {
"url": "https://github.com/clashperk/clashofclans.js/issues"
},
"homepage": "https://clashofclans.js.org",
"standard-version": {
"skip": {
"changelog": false,
"commit": true,
"tag": true
}
},
"dependencies": {
"undici": "^5.23.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^18.17.5",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"dotenv": "^16.0.2",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"gen-esm-wrapper": "^1.1.3",
"jest": "^29.7.0",
"prettier": "^3.0.1",
"rimraf": "^5.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=18.x"
}
}