This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
69 lines (69 loc) · 1.86 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
{
"name": "create-commerce-app",
"version": "1.0.1",
"license": "BSD-3-Clause",
"description": "A commerce cloud application generator",
"homepage": "https://developer.commercecloud.com/s/",
"repository": {
"type": "git",
"url": "https://github.com/SalesforceCommerceCloud/create-commerce-app"
},
"bin": "./bin/run",
"bugs": "https://github.com/create-commerce-app/issues",
"scripts": {
"depcheck": "depcheck",
"pretest": "npm run depcheck",
"test:ci": "TS_NODE_COMPILER_OPTIONS='{\"rootDir\":\".\"}' nyc mocha --reporter=xunit --reporter-options output=reports/generator.xml",
"test": "mocha",
"prepack": "tsc",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.16.0",
"@types/fs-extra": "^8.1.0",
"@types/yeoman-environment": "^2.10.2",
"@types/yeoman-generator": "^4.11.4",
"fs-extra": "^9.1.0",
"simple-git": "1.132.0",
"snyk": "^1.667.0",
"tslib": "^1.14.1",
"yeoman-environment": "^2.10.3",
"yeoman-generator": "^4.12.0"
},
"devDependencies": {
"@oclif/test": "^1.2.5",
"@types/chai": "^4.2.8",
"@types/mocha": "^5.2.7",
"@types/node": "^10.17.14",
"@types/tmp": "^0.1.0",
"@types/yeoman-assert": "^3.1.1 ",
"@types/yeoman-test": "^2.0.3",
"chai": "^4.2.0",
"depcheck": "^0.9.2",
"eslint": "^5.16.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.1.0",
"mocha": "^8.2.1",
"nyc": "^14.1.1",
"sinon": "^9.2.1",
"tmp": "^0.1.0",
"ts-node": "^8.6.2",
"typescript": "^3.9.7",
"yeoman-assert": "^3.1.0",
"yeoman-test": "^1.7.0"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib"
],
"main": "lib/index.js",
"oclif": {
"bin": "create-commerce-app"
},
"snyk": true
}