-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.51 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
56
57
58
59
{
"name": "c3-cli",
"version": "1.1.0",
"description": "The Construct 3 Command Line Interface (CLI) is a unified tool to manage your C3 dev environment.",
"main": "index.js",
"scripts": {
"clean": "rimraf lib",
"gen-package-json": "babel-node ./gen-package.json.js",
"test": "jest",
"dev": "babel-node -- ./src/index.js",
"pre-build": "npm run clean && rimraf ./src/package.json && babel-node ./gen-package.json.js",
"build": "npm run pre-build && cross-env NODE_ENV=production babel src -d lib --copy-files --ignore __tests__ "
},
"repository": {
"type": "git",
"url": "git+https://github.com/diptox-c3/c3-cli.git"
},
"keywords": [
"c3",
"construct",
"construct",
"3",
"scirra",
"diptox",
"hmmg",
"c3-cli",
"cli",
"c3",
"cli"
],
"dependencies": {
"bunyan": "^1.8.12",
"bunyan-format": "^0.2.1",
"camelcase": "^5.0.0",
"caporal": "^0.10.0",
"child_process": "^1.0.2",
"express": "^4.16.3",
"fs-extra": "^6.0.1",
"home-path": "^1.0.6",
"https": "^1.0.0",
"path": "^0.12.7",
"read-pkg": "^3.0.0",
"replace-in-file": "^3.4.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"cross-env": "^5.1.6",
"nodemon": "^1.17.5",
"rimraf": "^2.6.2"
},
"author": "DipToX",
"license": "MIT",
"bugs": {
"url": "https://github.com/diptox-c3/c3-cli/issues"
},
"homepage": "https://github.com/diptox-c3/c3-cli#readme"
}