This repository has been archived by the owner on May 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 2.56 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
66
67
68
69
70
71
72
73
74
75
76
{
"name": "ibm-security-advisor",
"version": "6.0.0",
"description": "Client library to use the IBM Security Advisor",
"repository": {
"type": "git",
"url": "https://github.com/ibm-cloud-security/security-advisor-sdk-node"
},
"keywords": [
"ibm",
"security-advisor"
],
"author": "IBM Corp.",
"scripts": {
"eslint:fix": "eslint . --fix",
"eslint:check": "eslint . --cache",
"tslint:fix": "tslint --fix -p . -c tslint.json",
"tslint:check": "tslint -p . -c ./tslint.json",
"lint": "npm run eslint:check && npm run tslint:check",
"lint-fix": "npm run eslint:fix && npm run tslint:fix",
"build": "tsc",
"prepublishOnly": "npm run build",
"postversion": "tsc-publish --no-checks --dry-run",
"jest": "jest",
"test": "npm run build && npm run lint && jest test/",
"test-unit": "npm run build && jest test/unit/",
"test-integration": "npm run build && jest test/integration",
"test-unit-travis": "jest --runInBand test/unit/",
"test-integration-travis": "jest --runInBand --no-colors --testNamePattern='^((?!@slow).)*$' --json test/integration > test-output.log",
"report-coverage": "codecov",
"check-packages": "installed-check -e -d -v",
"encyrpt_secret": "openssl aes-256-cbc -in test/resources/secrets.js -out secrets.js.enc -base64 -K $encrypted_key -iv $encrypted_iv",
"decrypt_secret": "openssl aes-256-cbc -d -in secrets.js.enc -out test/resources/secrets.js -base64 -K $encrypted_key -iv $encrypted_iv"
},
"license": "Apache-2.0",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"@types/node": "^12.0.8",
"extend": "^3.0.2",
"ibm-cloud-sdk-core": "^2.7.1",
"tsc-publish": "^0.5.2"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/git": "^7.0.12",
"axios": "^0.21.1",
"codecov": "^3.5.0",
"eslint": "^5.16.0",
"eslint-config-google": "^0.12.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-node": "^9.0.0",
"eslint-plugin-prettier": "^3.0.1",
"installed-check": "^2.2.0",
"jest": "^24.8.0",
"prettier": "^1.17.1",
"semantic-release": "^17.2.3",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"typedoc": "^0.15.0",
"typescript": "^3.4.5"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"coveragePathIgnorePatterns": [
"<rootDir>/test/"
],
"moduleNameMapper": {
"package.json": "<rootDir>/__mocks__/package.json"
},
"testEnvironment": "node"
}
}