forked from SalesforceCommerceCloud/sfcc-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.65 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
{
"name": "sfcc-ci",
"version": "2.11.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": "npx [email protected] mocha test/unit",
"test:functional:cli": "bin/test-cli.sh",
"dist": "npx [email protected] . --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": {
"@snyk/protect": "^1.1110.0",
"archiver": "^5.3.1",
"chalk": "^2.4.1",
"colors": "1.4.0",
"commander": "^2.18.0",
"conf": "^4.0.2",
"del": "^5.1.0",
"dotenv": "^8.6.0",
"generate-password": "^1.7.0",
"globby": "^11.1.0",
"inquirer": "^7.3.3",
"jsondiffpatch": "^0.4.1",
"jsonwebtoken": "^9.0.0",
"node-sha1": "^1.0.1",
"open": "^6.4.0",
"request": "^2.88.0",
"request-debug": "^0.2.0",
"table": "^6.8.1"
},
"devDependencies": {
"archiver": "^5.3.1",
"chai": "^4.1.2",
"chalk": "^2.4.1",
"del": "^5.1.0",
"eslint": "^5.5.0",
"globby": "^11.1.0",
"jsondiffpatch": "^0.4.1",
"mocha": "^6.2.3",
"node-sha1": "^1.0.1",
"proxyquire": "^2.1.0",
"sinon": "^7.2.2"
},
"snyk": true
}