This repository has been archived by the owner on Apr 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
70 lines (70 loc) · 1.75 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
{
"name": "reaction-cli",
"version": "0.30.0",
"description": "A command line tool for Reaction Commerce",
"main": "./dist/main.js",
"scripts": {
"build": "rimraf ./dist && babel src --out-dir ./dist",
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"test": "echo 'No tests!'",
"watch": "watch 'npm run build && npm link' src"
},
"engines": {
"node": ">=4.0.0"
},
"bin": {
"reaction": "./dist/main.js",
"rc": "./dist/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reactioncommerce/reaction-cli.git"
},
"keywords": [
"reaction",
"reaction-cli",
"reactioncommerce",
"reaction commerce"
],
"author": "Reaction Commerce",
"license": "MIT",
"bugs": {
"url": "https://github.com/reactioncommerce/reaction-cli/issues"
},
"preferGlobal": "true",
"homepage": "https://github.com/reactioncommerce/reaction-cli",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "10.0.1",
"babel-plugin-lodash": "3.3.4",
"babel-preset-env": "1.7.0",
"babel-preset-stage-2": "6.24.1",
"babel-root-slash-import": "3.1.0",
"eslint": "5.11.1",
"eslint-plugin-babel": "5.3.0",
"watch": "1.0.2"
},
"dependencies": {
"analytics-node": "3.3.0",
"babel-polyfill": "6.26.0",
"bluebird": "3.5.3",
"chalk": "2.4.1",
"cli-table3": "0.5.0",
"command-exists": "1.2.8",
"fs-extra": "7.0.1",
"inquirer": "6.2.1",
"keypair": "1.0.1",
"latest-semver": "1.0.0",
"lodash": "4.17.11",
"node-fetch": "2.3.0",
"node-forge": "0.7.6",
"opn": "5.4.0",
"rimraf": "2.6.2",
"semver": "5.6.0",
"update-notifier": "2.5.0",
"url": "0.11.0",
"uuid": "3.3.2",
"yargs": "8.0.2"
}
}