forked from SalesforceCommerceCloud/sfcc-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.35 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": "sfcc-ci",
"version": "2.5.0",
"description": "Command line tool to allow Continuous Integration practices with Salesforce Commerce Cloud instances",
"main": "index.js",
"bin": {
"sfcc-ci": "./cli.js"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore ./",
"test": "npm run lint && npm run test:unit",
"test:unit": "mocha test/unit --recursive",
"test:unit:coverage": "istanbul cover _mocha test/unit --recursive",
"test:functional:cli": "bin/test-cli.sh",
"dist": "pkg . --out-path dist/",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SalesforceCommerceCloud/sfcc-ci.git"
},
"author": "Tobias Lohr",
"license": "BSD-3-Clause",
"homepage": "https://github.com/SalesforceCommerceCloud/sfcc-ci#readme",
"dependencies": {
"chalk": "^2.4.1",
"commander": "^2.18.0",
"conf": "^4.0.2",
"dotenv": "^8.2.0",
"inquirer": "^6.2.0",
"jsonwebtoken": "^8.3.0",
"open": "^6.4.0",
"request": "^2.88.0",
"request-debug": "^0.2.0",
"table": "^5.0.2",
"snyk": "^1.320.5"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.5.0",
"istanbul": "^0.4.5",
"mocha": "^6.2.3",
"pkg": "^4.3.4",
"proxyquire": "^2.1.0",
"sinon": "^7.2.2"
},
"snyk": true
}