forked from sprucelabsai/sprucebot-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.77 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
{
"name": "sprucebot-cli",
"version": "1.5.0",
"description": "A command-line tool for Sprucebot 🌲🤖 (retail.bot).",
"main": "sprucebot.js",
"repository": "git@github.com: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",
"precommit": "npm run lint",
"prepush": "npm run lint && npm run test"
},
"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",
"pg": "^7.3.0",
"request": "^2.83.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": {
"eslint": "^4.8.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-prettier": "^2.3.1",
"husky": "^0.14.3",
"jest": "^22.0.5",
"jest-cli": "^22.0.6",
"prettier": "^1.7.4",
"sinon": "^4.1.4",
"yeoman-assert": "^3.0.0",
"yeoman-test": "^1.7.0"
},
"jest": {
"clearMocks": true,
"testPathIgnorePatterns": [
"/config/"
],
"collectCoverageFrom": [
"**/*.js",
"!**/node_modules/**",
"!**/__TEST__/**"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}