-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.09 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.09 KB
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
{
"name": "@datlas/perf-request",
"version": "1.2.4",
"description": "`npm install perf-request`",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Kevin2cqs/perf-request.git"
},
"author": "Kevin",
"license": "ISC",
"bugs": {
"url": "https://github.com/Kevin2cqs/perf-request/issues"
},
"homepage": "https://github.com/Kevin2cqs/perf-request#readme",
"dependencies": {
"axios": "^1.6.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.195",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.1.3"
},
"peerDependencies": {
"axios": "^1.6.0",
"lodash": "^4.17.21"
}
}