-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.39 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
{
"name": "@devoinc/alerts-api-client",
"version": "2.0.4",
"description": "Typescript client for devo alerts API",
"keywords": [
"devo",
"api",
"client",
"alerts",
"client library"
],
"repository": {
"type": "git",
"url": "[email protected]:DevoInc/alerts-api-client.git"
},
"license": "MIT",
"author": "Devo Inc.",
"main": "index.js",
"module": "index.esm.js",
"types": "index.d.ts",
"scripts": {
"build": "npm run clean && rollup -c",
"watch": "npm run clean && rollup -c -w",
"clean": "rimraf dist",
"docs": "typedoc --out docs ./src",
"eslint": "eslint . --ext .ts",
"nswag": "nswag run nswag/alerts.nswag --core 5.0.5"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.2.1",
"@types/isomorphic-fetch": "0.0.35",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"isomorphic-fetch": "^3.0.0",
"node-fetch": "^3.2.2",
"rimraf": "^3.0.2",
"rollup": "^2.70.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"ts-node": "^10.7.0",
"typedoc": "^0.22.13",
"typescript": "^4.6.2"
},
"optionalDependencies": {
"nswag": "^13.15.10"
},
"engines": {
"node": "16"
}
}