-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
94 lines (94 loc) · 2.47 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
{
"name": "platypi-cli",
"version": "0.14.2",
"description": "A command line interface for working with PlatypusTS projects.",
"author": "Platypi <[email protected]>",
"homepage": "https://platypi.io",
"main": "src/index.js",
"preferGlobal": true,
"bin": {
"plat": "bin/platypi"
},
"engines": {
"node": ">= 0.12.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Platypi/platypi-cli.git"
},
"keywords": [
"platypi",
"platypusts",
"typescript",
"framework"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Platypi/platypi-cli/issues"
},
"dependencies": {
"chalk": "^2.4.1",
"configstore": "^4.0.0",
"exit": "^0.1.2",
"findup": "^0.1.5",
"fs-extra": "^8.0.0",
"glob": "^7.1.3",
"handlebars": "^4.0.12",
"inquirer": "^6.2.0",
"json-stable-stringify": "^1.0.1",
"lodash": "^4.17.11",
"minimist": "^1.2.0",
"mkdirp": "latest",
"node-uuid": "^1.4.8",
"pleasant-progress": "^1.1.0",
"require-all": "^3.0.0",
"resolve": "^1.8.1",
"rimraf": "latest",
"swag": "^0.7.0",
"through": "^2.3.8",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"@types/assertion-error": "latest",
"@types/chai": "latest",
"@types/chai-as-promised": "latest",
"@types/chalk": "latest",
"@types/fs-extra": "latest",
"@types/glob": "latest",
"@types/handlebars": "latest",
"@types/inquirer": "latest",
"@types/lodash": "latest",
"@types/minimatch": "latest",
"@types/minimist": "latest",
"@types/mkdirp": "latest",
"@types/mocha": "latest",
"@types/node": "latest",
"@types/node-uuid": "latest",
"@types/promises-a-plus": "latest",
"@types/rimraf": "latest",
"@types/sinon": "latest",
"@types/sinon-chai": "latest",
"@types/swag": "latest",
"@types/through": "latest",
"chai": "latest",
"chai-as-promised": "latest",
"istanbul": "latest",
"mocha": "latest",
"sinon": "latest",
"sinon-chai": "latest",
"tsconfig-lint": "latest",
"typescript": "latest"
},
"scripts": {
"prepublish": "npm run build",
"build": "npm run ts",
"clean": "rimraf src/**/*.js src/*.js test/unit/**/*.js test/*.js",
"cli": "npm run build && node bin/platypi",
"lint": "tsconfig-lint -u",
"test": "npm run build && istanbul cover --dir test/coverage -- test/runner.js",
"ts": "tsc -p ."
},
"typescript": {
"definition": "src/cli.d.ts"
}
}