forked from SalesforceCommerceCloud/sfcc-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.71 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
{
"name": "sfcc-ci",
"version": "2.8.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": {
"archiver": "^5.0.0",
"chalk": "^2.4.1",
"colors": "^1.4.0",
"commander": "^2.18.0",
"conf": "^4.0.2",
"del": "^5.1.0",
"dotenv": "^8.6.0",
"globby": "^11.0.4",
"inquirer": "^7.0.5",
"jsondiffpatch": "^0.4.1",
"jsonwebtoken": "^8.3.0",
"node-fetch": "^2.6.1",
"node-sha1": "^1.0.1",
"open": "^6.4.0",
"request": "^2.88.0",
"request-debug": "^0.2.0",
"snyk": "^1.667.0",
"table": "^6.0.0"
},
"devDependencies": {
"archiver": "^5.0.0",
"chai": "^4.1.2",
"chalk": "^2.4.1",
"colors": "^1.4.0",
"del": "^5.1.0",
"eslint": "^5.5.0",
"globby": "^11.0.4",
"istanbul": "^0.4.5",
"jsondiffpatch": "^0.4.1",
"mocha": "^6.2.3",
"node-sha1": "^1.0.1",
"pkg": "^4.3.4",
"proxyquire": "^2.1.0",
"sinon": "^7.2.2"
},
"snyk": true
}