-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
49 lines (49 loc) · 1.2 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
{
"name": "salt-api",
"version": "2.1.2",
"description": "A simple salt-api client library",
"main": "dist/salt.js",
"types": "dist/salt.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 0",
"snyk-protect": "snyk-protect",
"prepublish": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lahdekorpi/node-salt-api.git"
},
"keywords": [
"salt-api",
"salt",
"cherrypy",
"saltstack"
],
"author": "Toni Lähdekorpi",
"license": "MIT",
"bugs": {
"url": "https://github.com/lahdekorpi/node-salt-api/issues"
},
"homepage": "https://github.com/lahdekorpi/node-salt-api#readme",
"peerDependencies": {
"axios": "^1.4.0",
"eventsource": "^2.0.2"
},
"snyk": true,
"devDependencies": {
"@snyk/protect": "^1.1190.0",
"@types/eventsource": "^1.1.11",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"typescript": "^5.1.6"
}
}