This repository has been archived by the owner on Apr 5, 2023. It is now read-only.
-
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": "tempo-client",
"version": "4.7.0",
"description": "Wrapper for the Tempo REST API",
"main": "lib/tempo.js",
"types": "lib/tempo.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"lint": "eslint --ext .ts 'src/**/*.ts' 'tests/**/*.ts'",
"format": "eslint --ext .ts --fix 'src/**/*.ts' 'tests/**/*.ts'",
"test": "jest --config jestconfig.json",
"doc": "typedoc --out doc ./src/tempo.ts ./src/collections/* ./src/request/*",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src tests",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leifgehrmann/node-tempo-client.git"
},
"keywords": [
"Tempo",
"REST API Client"
],
"author": "Leif Gehrmann",
"license": "MIT",
"bugs": {
"url": "https://github.com/leifgehrmann/node-tempo-client/issues"
},
"homepage": "https://github.com/leifgehrmann/node-tempo-client#readme",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/jsdom": "^21.1.1",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"codecov": "^3.8.3",
"eslint": "^8.37.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typedoc": "^0.23.28",
"typescript": "^5.0.3"
},
"dependencies": {
"axios": "^1.3.4"
}
}