-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
65 lines (65 loc) · 1.87 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
56
57
58
59
60
61
62
63
64
65
{
"name": "jfrog-client-js",
"version": "2.9.0",
"description": "JFrog Javascript Client is a javascript library, which wraps some of the REST APIs exposed by JFrog Services's different services.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/jfrog/jfrog-client-js"
},
"bugs": {
"url": "https://github.com/jfrog/jfrog-client-js/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"model/**/*.ts\"",
"build": "tsc --declaration",
"lint": "eslint -c .eslintrc.js --ext .ts src model test",
"prepare": "npm run build",
"preversion": "npm run lint",
"watch": "tsc -watch -p ./",
"compile": "tsc -p ./",
"pretest": "npm run compile",
"test": "jest --verbose --runInBand"
},
"files": [
"dist/**/*"
],
"dependencies": {
"axios": "~0.27.2",
"axios-retry": "~3.2.5",
"https-proxy-agent": "^5.0.1"
},
"devDependencies": {
"@types/faker": "^5.5.3",
"@types/http-proxy": "^1.17.9",
"@types/jest": "^27.5.1",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"faker": "5.5.3",
"http-proxy": "^1.18.1",
"jest": "^29.3.1",
"nock": "^13.2.4",
"prettier": "^2.6.2",
"tmp": "^0.2.1",
"ts-jest": "^29.0.3",
"typescript": "^4.7.2"
},
"keywords": [
"artifactory",
"javascript",
"typescript",
"security",
"nodejs",
"devops",
"jfrog",
"xray",
"scan",
"js",
"ts"
]
}