This repository was archived by the owner on Dec 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.13 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.13 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@sakuraapi/cli",
"version": "0.6.3",
"description": "Command Line Interface for Scaffolding and Managing SakuraAPI Projects",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": {
"sapi": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "./scripts/build.sh",
"install": "chmod +x ./scripts/*.sh || true",
"prepublishOnly": "npm run build && npm test && npx nsp check",
"start:watch": "./scripts/start:watch.sh",
"test": "echo no tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sakuraapi/cli.git"
},
"keywords": [
"nodejs",
"cli",
"sakuraapi",
"typescript"
],
"author": "Jean-Pierre E. Poveda",
"license": "BSD-3-Clause",
"engines": {
"node": ">=8.0.0"
},
"bugs": {
"url": "https://github.com/sakuraapi/cli/issues"
},
"homepage": "https://github.com/sakuraapi/cli#readme",
"dependencies": {
"change-case": "^3.0.1",
"cli-table": "^0.3.1",
"clui": "^0.3.6",
"colors": "^1.2.1",
"commander": "^2.13.0",
"debug": "^3.1.0",
"diff": "^3.4.0",
"ejs": "^2.5.7",
"email-templates": "^4.0.1",
"glob": "^7.1.2",
"inquirer": "^5.1.0",
"inquirer-autocomplete-prompt": "^0.12.1",
"mem-fs": "^1.1.3",
"mem-fs-editor": "^5.1.0",
"nodemailer": "^4.6.7",
"rxjs": "^5.5.6",
"semver": "^5.4.1",
"shelljs": "^0.8.1",
"spdx-license-ids": "^2.0.1",
"validate-npm-package-name": "^3.0.0",
"vinyl": "^2.1.0"
},
"devDependencies": {
"@sakuraapi/auth-audience": "^0.3.5",
"@sakuraapi/auth-native-authority": "^0.5.4",
"@sakuraapi/core": "^0.19.5",
"@types/change-case": "^2.3.1",
"@types/commander": "^2.12.2",
"@types/diff": "^3.2.2",
"@types/ejs": "^2.5.0",
"@types/glob": "^5.0.34",
"@types/inquirer": "0.0.38",
"@types/semver": "^5.4.0",
"@types/shelljs": "^0.7.7",
"cors": "^2.8.4",
"express": "^4.16.2",
"helmet": "^3.9.0",
"nodemon": "^1.18.3",
"request-promise-native": "^1.0.5",
"typescript": "^2.6.1",
"winston": "^2.4.0",
"winston-aws-cloudwatch": "^1.6.0"
}
}