-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.14 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
{
"name": "lori-cli",
"version": "1.0.0",
"description": "Command line tool for lori",
"main": "lib/index.js",
"bin": {
"lori": "lib/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "babel src --out-dir lib",
"start": "babel src --out-dir lib && npm install -g && npm link"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/mrbarde/lori-cli.git"
},
"keywords": [
"lori",
"lori-bites",
"framework",
"react",
"terminal",
"cli",
"command-line"
],
"author": "Daniel Barde <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrbarde/lor-cli/issues"
},
"homepage": "https://github.com/mrbarde/lor-cli#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1"
},
"dependencies": {
"chalk": "^2.1.0",
"commander": "^2.11.0",
"cross-spawn": "^5.1.0",
"download-git-repo": "^1.0.1",
"figlet": "^1.2.0",
"shelljs": "^0.7.8",
"spawn-sync": "^1.0.15"
}
}