This repository has been archived by the owner on Mar 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
84 lines (84 loc) · 2.07 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
{
"name": "@sprucelabs/sprucebot-cli",
"publishConfig": {
"access": "public",
"tag": "beta"
},
"version": "2.6.4",
"description": "A command-line tool for Sprucebot 🌲🤖 (retail.bot).",
"main": "sprucebot.js",
"repository": "[email protected]:sprucelabsai/sprucebot-cli.git",
"author": "Spruce Labs, Inc",
"license": "MIT",
"preferGlobal": true,
"engines": {
"node": ">=8.4.0"
},
"config": {
"strict-ssl": false
},
"bin": {
"sprucebot": "./bin/sprucebot.js",
"sprucebotProgram": "./bin/sprucebot-platform.js"
},
"scripts": {
"start": "node ./bin/sprucebot.js",
"lint": "./node_modules/.bin/eslint '**/**/*{.js}'",
"test": "jest",
"release": "semantic-release"
},
"dependencies": {
"chalk": "^2.1.0",
"commander": "^2.11.0",
"config": "^1.26.2",
"execa": "^0.10.0",
"fs-extra": "^5.0.0",
"gunzip-maybe": "^1.4.1",
"hostile": "^1.3.0",
"ini": "^1.3.4",
"inquirer": "^5.0.0",
"js-yaml": "^3.10.0",
"keypress": "^0.2.1",
"lodash": "^4.17.11",
"opn": "^5.4.0",
"pg": "^7.3.0",
"request": "^2.83.0",
"semver": "^5.6.0",
"sleep": "^5.1.1",
"tar-fs": "^1.16.0",
"untildify": "^3.0.2",
"wrap-ansi": "^3.0.1",
"yeoman-environment": "^2.0.3",
"yeoman-generator": "^2.0.2"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.0",
"@semantic-release/git": "7.1.0-beta.3",
"@sprucelabs/semantic-release": "^2.0.8",
"conventional-changelog-sprucelabs": "^1.1.0",
"eslint": "^5",
"eslint-config-spruce": "^9.0.0",
"husky": "^0.14.3",
"jest": "^22.0.5",
"jest-cli": "^22.0.6",
"prettier": "^1.7.4",
"semantic-release": "^16",
"sinon": "^4.1.4",
"typescript": "3.6.3",
"yeoman-assert": "^3.0.0",
"yeoman-test": "^1.7.0"
},
"jest": {
"clearMocks": true,
"testPathIgnorePatterns": [
"/config/"
],
"collectCoverageFrom": [
"**/*.js",
"!**/node_modules/**",
"!**/__TEST__/**"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}