-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.35 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
{
"name": "actbase-cli",
"version": "0.1.0",
"description": "Actbase Command Line Interface",
"author": "Trabricks LLC",
"license": "MIT",
"main": "dist/index.js",
"bin": {
"actbase": "bin/actbase"
},
"scripts": {
"start": "src/index.js",
"build": "babel src --out-dir dist --copy-files",
"localinstall": "npm run build && cp -r dist/* /usr/local/lib/node_modules/actbase-cli/dist/",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"React",
"React-Native",
"Actbase",
"CLI",
"boilerplate",
"i18n",
"i18n-generator"
],
"dependencies": {
"chalk": "^2.4.2",
"commander": "^3.0.2",
"inquirer": "^7.0.4",
"lodash": "^4.17.15",
"node-fetch": "^2.3.0",
"open": "^7.0.2",
"plist": "^3.0.1",
"select-shell": "^1.1.3"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/preset-env": "^7.6.2",
"prettier": "^1.19.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actbase/actbase-cli.git"
},
"bugs": {
"url": "https://github.com/actbase/actbase-cli/issues"
},
"homepage": "https://github.com/actbase/actbase-cli#readme"
}