-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 3.08 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
103
{
"name": "forest-cli",
"description": "The Lumberjacks' toolbelt is the Forest CLI which makes easy to manage your back office application directly from the terminal.",
"version": "1.6.1",
"author": "Sandro Munda",
"contributors": [
"Arnaud Valensi <[email protected]>",
"Vincent Molinié <[email protected]>",
"David Routhieau <[email protected]>",
"Arnaud Besnier <[email protected]>",
"Guillaume Gautreau <[email protected]>"
],
"bin": {
"forest": "./bin/run"
},
"bugs": "https://github.com/ForestAdmin/toolbelt/issues",
"dependencies": {
"@oclif/command": "1.5.4",
"@oclif/config": "1.8.8",
"@oclif/errors": "1.2.2",
"@oclif/plugin-help": "2.1.3",
"@oclif/plugin-not-found": "1.2.4",
"@oclif/plugin-warn-if-update-available": "1.7.0",
"bluebird": "3.5.2",
"chalk": "4.0.0",
"cli-table": "github:Automattic/cli-table#master",
"clipboardy": "2.3.0",
"dotenv": "8.2.0",
"inquirer": "6.2.0",
"joi": "14.3.1",
"jsonapi-serializer": "3.6.2",
"jsonwebtoken": "8.5.1",
"jwt-decode": "2.2.0",
"lodash": "4.17.15",
"progress": "2.0.3",
"spinnies": "0.5.1",
"superagent": "3.8.3",
"superagent-promise": "1.1.0",
"uuid": "8.0.0"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@commitlint/travis-cli": "8.3.5",
"@forestadmin/devops": "2.0.1",
"@oclif/dev-cli": "1.22.2",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"eslint": "6.7.2",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-oclif": "3.1.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "23.3.0",
"eslint-plugin-sonarjs": "0.5.0",
"fs-extra": "8.1.0",
"husky": "4.2.4",
"jest": "24.9.0",
"mock-stdin": "1.0.0",
"nock": "12.0.3",
"semantic-release": "17.0.7",
"semantic-release-slack-bot": "1.6.2",
"simple-git": "1.65.0",
"stdout-stderr": "0.1.13"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/ForestAdmin/toolbelt",
"keywords": [
"forestadmin"
],
"license": "GPL-3.0",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "forest",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-warn-if-update-available",
"@oclif/plugin-not-found"
],
"warn-if-update-available": {
"timeoutInDays": 7,
"message": "<%= config.name %> update available from <%= chalk.greenBright(config.version) %> to <%= chalk.greenBright(latest) %>.",
"registry": "https://www.npmjs.com/package/forest-cli"
}
},
"repository": "ForestAdmin/toolbelt",
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js src test",
"postpack": "rm -f oclif.manifest.json",
"prepack": "oclif-dev manifest",
"readme:update-coverage": "yarn test:coverage && node ./scripts/update-coverage.js",
"test": "jest",
"test:coverage": "jest --coverage"
}
}