-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.3 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
{
"name": "instatus.ts",
"version": "1.2.3",
"description": "Library to interact with the Instatus API",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run lint && rimraf dist && tsc",
"build:test": "npx rimraf dist && tsc",
"build:watch": "npx rimraf dist && tsc --watch",
"lint": "npx eslint --ext .ts src/",
"lint:fix": "npx eslint --ext .ts src/ --fix",
"prepublishOnly": "npm run build",
"docs": "npx typedoc --json .tmp/typedoc-out.json --plugin typedoc-plugin-as-member-of && ts-node scripts/docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vicente015/instatus.ts.git"
},
"keywords": [
"instatus",
"api",
"node"
],
"author": "Vicente015 <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Vicente015/instatus.ts/issues"
},
"homepage": "https://github.com/Vicente015/instatus.ts#readme",
"dependencies": {
"axios": "^1.6.2"
},
"devDependencies": {
"@types/node": "^20.10.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"rimraf": "^5.0.5",
"ts-docgen": "github:dbots-pkg/ts-docgen#main",
"ts-node": "^10.9.1",
"typedoc": "^0.25.3",
"typedoc-plugin-as-member-of": "^1.0.2"
}
}