-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
120 lines (120 loc) · 3.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "rde",
"description": "Redesigned Development Environment",
"version": "0.0.2-alpha.15",
"bin": {
"rde": "./bin/run"
},
"bugs": "https://github.com/kaola-fed/rede/issues",
"dependencies": {
"@oclif/command": "^1.5.12",
"@oclif/config": "^1.12.12",
"@oclif/plugin-help": "^2",
"axios": "^0.18.0",
"browser-sync": "^2.26.4",
"chalk": "^2.4.2",
"chokidar": "^2.1.5",
"clean-stack": "^2.1.0",
"cli-table2": "^0.2.0",
"cross-spawn": "^6.0.5",
"deasync": "^0.1.15",
"debug": "^4.1.1",
"deep-extend": "^0.6.0",
"directory-tree": "^2.2.1",
"download": "^7.1.0",
"enquirer": "^2.3.0",
"fs-extra": "^7.0.1",
"gh-pages": "^2.0.1",
"highlight.js": "^9.15.6",
"ip": "^1.1.5",
"js-beautify": "^1.10.0",
"markdown-it": "^8.4.2",
"markdown-it-meta": "0.0.1",
"mustache": "^3.0.1",
"read-package-json": "^2.0.13",
"recursive-copy": "^2.0.10",
"retry-axios": "^1.0.1",
"rimraf": "^2.6.3",
"semver": "^6.0.0",
"staged-git-files": "^1.2.0",
"standard-version": "^6.0.1",
"stringify-object": "^3.3.0",
"through2": "^3.0.1",
"ts-node": "^8.0.3",
"typescript": "^3.3",
"validate-commit-msg": "^2.14.0",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"write-json-file": "^4.1.0",
"write-pkg": "^3.2.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"@oclif/tslint": "^3",
"@types/chai": "^4",
"@types/deep-extend": "^0.4.31",
"@types/mocha": "^5",
"@types/mustache": "^0.8.32",
"@types/node": "^10",
"@types/through2": "^2.0.34",
"chai": "^4.2.0",
"globby": "^8",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"mocha": "^5",
"nyc": "^13",
"sinon": "^7.3.1",
"tslint": "^5",
"tslint-lines-between-class-members": "^1.3.1"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/kaola-fed/rede",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "rde",
"hooks": {
"checkUpdate": "./lib/hooks/check.update"
},
"plugins": [
"@oclif/plugin-help"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"npm run lint",
"git add"
]
},
"repository": "kaolafed/rde",
"scripts": {
"posttest": "tslint -p test -t stylish",
"copym": "cp -r src/mustaches lib/mustaches",
"prepublishOnly": "tsc -b && cp -r src/mustaches lib/mustaches",
"manifest": "oclif-dev manifest",
"test:coverage": "nyc --extension .ts mocha --project ./test/tsconfig.json --opts ./test/mocha.opts --forbid-only \"test/**/*.test.ts\"",
"test": "mocha --project ./test/tsconfig.json --opts ./test/mocha.opts --forbid-only \"test/**/*.test.ts\"",
"commitmsg": "validate-commit-msg",
"lint": "tsc --pretty && tslint --project ./tslint.json",
"lint:fix": "tsc --pretty && tslint --project ./tslint.json --fix"
},
"types": "lib/index.d.ts"
}