-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.71 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
{
"name": "imperial.js",
"version": "3.0.1",
"description": "Imperial API wrapper for Node.js",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"scripts": {
"ci": "rm -rf node_modules && yarn install --frozen-lockfile",
"build": "tsup",
"w": "yarn build --watch",
"lint": "eslint --ext .ts src/ --fix",
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imperialbin/imperial.js.git"
},
"keywords": [
"imperial",
"imperialb.in"
],
"author": "pxseu <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/imperialbin/imperial.js/issues"
},
"homepage": "https://github.com/imperialbin/imperial.js#readme",
"dependencies": {
"abort-controller": "^3.0.0",
"axios": "^0.27.2",
"permer": "^1.2.0"
},
"engines": {
"node": ">=8"
},
"devDependencies": {
"@pxseu/eslint-config": "^1.0.1",
"@pxseu/prettier-config": "^1.0.0",
"@types/jest": "^26.0.20",
"@types/node": "^16.9.1",
"@types/node-fetch": "^2.5.12",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"axios-mock-adapter": "^1.21.1",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"nodemon": "^2.0.15",
"pinst": "^2.1.6",
"prettier": "^2.2.1",
"ts-jest": "^26.5.1",
"tsup": "^6.1.2",
"tsx": "^3.12.7",
"typescript": "^4.7.3"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"testMatch": [
"**/test/**/*.test.ts"
],
"transform": {
"^.+\\.|ts$": "ts-jest"
}
}
}