-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.5 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.5 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
60
61
62
63
64
{
"name": "create-pardjs-module",
"description": "The cli fool for create pardjs module scaffold",
"version": "1.2.0",
"author": "Oliver.W @ole3021",
"bin": {
"create-pardjs-module": "./bin/run"
},
"bugs": "https://github.com/pardjs/create-pardjs-module/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"chalk": "^2.4.2",
"cross-spawn": "^6.0.5",
"fs-extra": "^8.0.1",
"inquirer": "^6.3.1",
"nodegit": "^0.25.0",
"ora": "^3.4.0",
"tslib": "^1"
},
"devDependencies": {
"@oclif/tslint": "^3",
"@types/cross-spawn": "^6.0.0",
"@types/fs-extra": "^7.0.0",
"@types/inquirer": "^6.0.1",
"@types/node": "^10",
"@types/nodegit": "^0.24.9",
"@types/ora": "^3.2.0",
"git-cz": "^3.2.1",
"np": "^5.0.3",
"ts-node": "^8",
"tslint": "^5",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/pardjs/create-pardjs-module",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "create-pardjs-module"
},
"repository": "pardjs/create-pardjs-module",
"scripts": {
"posttest": "tslint -p . -t stylish",
"prebuild": "rimraf dist",
"build": "tsc",
"commit": "git-cz",
"release": "np",
"prerelease": "npm run build",
"test": "echo NO TESTS"
},
"types": "lib/index.d.ts"
}