-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.54 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.54 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
65
{
"name": "create-pine-app",
"version": "1.2.0",
"description": "Create pine app",
"author": "zxj963577494",
"bin": {
"create-pine-app": "./bin/run",
"cpa": "./bin/run"
},
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.2",
"@types/cross-spawn": "^6.0.2",
"chalk": "^4.1.1",
"cross-spawn": "^7.0.3",
"download-git-repo": "^3.0.2",
"fs-extra": "^10.0.0",
"inquirer": "^8.1.2",
"tslib": "^2.3.0",
"yosay": "^2.0.2"
},
"devDependencies": {
"@oclif/test": "^1.2.8",
"@oclif/tslint": "^3.1.1",
"@types/chai": "^4.2.21",
"@types/chalk": "^2.2.0",
"@types/fs-extra": "^9.0.12",
"@types/inquirer": "^7.3.3",
"@types/mocha": "^8.2.3",
"@types/node": "^16.3.3",
"@types/yosay": "^2.0.0",
"chai": "^4.3.4",
"mocha": "^9.0.2",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"ts-node": "^10.1.0",
"tslint": "^6.1.3",
"typescript": "4.3.5"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/zxj963577494",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "create-pine-app"
},
"scripts": {
"posttest": "tslint -p test -t stylish",
"prepack": "rm -rf lib && tsc -b",
"build": "rm -rf lib && tsc -b",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"lint:prettier": "prettier -c --write \"src/**/*\""
},
"types": "lib/index.d.ts"
}