-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.12 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.12 KB
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
{
"name": "arc-tool",
"version": "1.0.0-beta.4",
"description": "create a project quickly",
"main": "index.js",
"bin": {
"arc": "bin/arc.js"
},
"scripts": {
"test": "jest --detectOpenHandles",
"deploy": "sh scripts/publish.sh"
},
"files": [
"bin",
"__test__",
"config",
"src",
"utils",
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/HRDVV/arc-cli.git"
},
"keywords": [
"templates",
"node"
],
"author": "HRDVV",
"license": "MIT",
"bugs": {
"url": "https://github.com/HRDVV/arc-cli/issues"
},
"homepage": "https://github.com/HRDVV/arc-cli#readme",
"dependencies": {
"chalk": "^2.4.2",
"commander": "^4.0.0",
"download": "^7.1.0",
"ejs": "^2.7.2",
"fs-extra": "^8.1.0",
"inquirer": "^7.0.0",
"log-symbols": "^3.0.0",
"ora": "^4.0.2",
"request": "^2.88.0",
"rimraf": "^3.0.0",
"semver": "^6.3.0"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"babel-jest": "^24.9.0",
"jest": "^24.9.0",
"regenerator-runtime": "^0.13.3"
}
}