-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.47 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.47 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
{
"name": "exos-cli",
"version": "0.0.0-development",
"description": "CLI tool for building React + TypeScript applications",
"main": "./dist/exos-cli.js",
"types": "./dist/types/exos-cli.d.ts",
"bin": {
"exos-cli": "./dist/exos-cli.js"
},
"files": [
"dist"
],
"scripts": {
"lint": "exos-scripts lint --type=library",
"test": "exos-scripts test",
"build": "rm -rf dist && tsc && (for filename in `find src/commands -name 'templates'`; do cp -r $filename `echo $filename | sed 's/src/dist/'` ; done)",
"prestart": "npm run build",
"start": "node .",
"debug": "node --nolazy --inspect-brk=9229 ./dist/exos-cli.js init",
"prepublishOnly": "npm run build",
"publish": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/exosjs/exos-cli.git"
},
"keywords": [
"react",
"cli",
"react-cli",
"React CLI",
"exos"
],
"author": "nanovazquez <marianodvazquez@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/exosjs/exos-cli/issues"
},
"homepage": "https://github.com/exosjs/exos-cli#readme",
"dependencies": {
"fs-extra": "^9.0.0",
"yargs-interactive": "^3.0.0"
},
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/jest": "^25.2.1",
"@types/node": "^14.0.14",
"@types/yargs-interactive": "^2.1.0",
"chalk": "^4.0.0",
"exos-scripts": "^1.0.3",
"semantic-release": "^17.1.1",
"typescript": "^3.9.5"
}
}