forked from bigcommerce/stencil-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.8 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@bigcommerce/stencil-cli",
"version": "2.1.1",
"description": "CLI tool to run BigCommerce Stores locally for theme development.",
"main": "index.js",
"engines": {
"node": ">= 10.0.0 <11.0.0"
},
"scripts": {
"lint": "eslint .",
"test": "npm run lint && npm run run-tests",
"run-tests": "lab bin/ server/ lib/ tasks/ -t 80 -l -e 'development' -P spec --verbose",
"test-cov-html": "lab bin/ server/ lib/ -r html -o coverage.html -P spec"
},
"bin": {
"stencil": "./bin/stencil",
"stencil-init": "./bin/stencil-init",
"stencil-push": "./bin/stencil-push",
"stencil-start": "./bin/stencil-start",
"stencil-release": "./bin/stencil-release"
},
"config": {
"stencil_version": "1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/bigcommerce/stencil-cli"
},
"author": "BigCommerce",
"license": "BSD-4-Clause",
"bugs": {
"url": "https://github.com/bigcommerce/stencil-cli/issues"
},
"homepage": "https://github.com/bigcommerce/stencil-cli",
"dependencies": {
"@bigcommerce/stencil-paper": "^3.0.0-rc.29",
"@bigcommerce/stencil-styles": "1.2.1",
"@hapi/boom": "^8.0.1",
"@hapi/glue": "^6.2.0",
"@hapi/h2o2": "^8.3.2",
"@hapi/hapi": "^18.4.1",
"@hapi/inert": "^5.2.2",
"@octokit/rest": "^18.0.3",
"accept-language-parser": "^1.0.2",
"ajv": "^6.11.0",
"archiver": "^5.0.0",
"async": "^2.4.0",
"browser-sync": "^2.26.12",
"cheerio": "^0.22.0",
"colors": "^1.4.0",
"commander": "^2.7.1",
"confidence": "^4.0.2",
"eslint": "^6.8.0",
"front-matter": "^1.0.0",
"glob": "^5.0.14",
"graceful-fs": "^4.1.11",
"image-size": "^0.4.0",
"inquirer": "^7.3.3",
"jsonlint": "^1.6.2",
"lodash": "^4.17.19",
"memory-cache": "^0.1.4",
"progress": "^2.0.0",
"recursive-readdir": "^2.2.2",
"request": "^2.81.0",
"semver": "^5.3.0",
"simple-git": "^1.65.0",
"tarjan-graph": "^0.3.0",
"tmp": "0.0.26",
"upath": "^1.2.0",
"uuid4": "^1.0.0",
"wreck": "^12.2.2",
"yauzl": "^2.10.0"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^7.1.2",
"@hapi/lab": "^21.0.0",
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"code": "^4.1.0",
"conventional-changelog-cli": "^2.0.35",
"gulp": "^4.0.2",
"gulp-bump": "^3.1.3",
"gulp-eslint": "^6.0.0",
"gulp-exec": "^4.0.0",
"gulp-git-streamed": "^2.8.1",
"gulp-if": "^3.0.0",
"gulp-prompt": "^1.2.0",
"gulp-util": "^3.0.8",
"husky": "^4.2.1",
"jest": "^26.1.0",
"npm-which": "^3.0.1",
"object-to-spawn-args": "^1.1.1",
"sinon": "^8.1.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}