This repository was archived by the owner on Mar 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.24 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.24 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "drtools",
"version": "0.15.9",
"description": "Set of useful tools",
"main": "dist/core/drtools",
"types": "dist/core/drtools",
"bin": {
"drtools-generator": "./dist/commands/generator/cmd.js",
"drtools-server": "./dist/commands/server/cmd.js"
},
"scripts": {
"start": "npm run build:live",
"start:ui": "cd web-ui/ui-ng; npm run start",
"cmd:generator": "./dist/commands/generator/cmd.js",
"cmd:server": "./dist/commands/server/cmd.js",
"prebuild": "rm -fr dist/*",
"build": "tsc",
"postbuild": "chmod -v +x dist/commands/*/cmd.js && npm run build:docs",
"build:live": "tsc --watch",
"build:docs": "node .tools/gen-docs.js",
"build:ui": "cd web-ui/ui-ng; npm run build",
"mocha": "mocha",
"pretest": "./test/assets/start.sh",
"test": "NODE_ENV=test nyc --reporter=lcov --reporter=text --reporter=html mocha || true",
"posttest": "./test/assets/stop.sh",
"live:coverage": "npx live-server --port=4201 --no-browser coverage",
"live:docs": "npx live-server --port=4202 --no-browser docs",
"live:server:koa": "NODE_ENV=test ./test/assets/start-live.sh koa",
"live:server": "NODE_ENV=test ./test/assets/start-live.sh"
},
"keywords": [
"automatic loaders",
"configs",
"express",
"koa",
"loaders",
"plugins"
],
"author": {
"name": "Alejandro Dario Simi",
"url": "http://daemonraco.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/daemonraco/drtools.git"
},
"license": "MIT",
"devDependencies": {
"@types/ajv": "^1.0.0",
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.16",
"@types/chalk": "^2.2.0",
"@types/commander": "^2.12.2",
"@types/cookies": "^0.7.6",
"@types/ejs": "^3.0.6",
"@types/events": "^3.0.0",
"@types/express": "^4.17.11",
"@types/fs-extra": "^9.0.10",
"@types/glob": "^7.1.3",
"@types/http-status-codes": "^1.2.0",
"@types/koa-send": "^4.1.2",
"@types/koa-static": "^4.0.1",
"@types/lorem-ipsum": "^2.0.0",
"@types/md5": "^2.3.0",
"@types/mime": "^2.0.3",
"@types/node": "^14.14.37",
"@types/uuid": "^8.3.0",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"koa-body": "^4.2.0",
"mocha": "^9.1.2",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"semver": "^7.3.5",
"shelljs": "^0.8.4",
"typescript": "^4.2.3"
},
"dependencies": {
"ajv": "^8.0.5",
"body-parser": "^1.19.0",
"chalk": "^4.1.2",
"commander": "^7.2.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"fs-extra": "^9.1.0",
"glob": "^7.1.6",
"http-status-codes": "^2.1.4",
"jsonpath-plus": "^5.0.4",
"koa": "^2.13.1",
"koa-router": "^10.0.0",
"koa-static": "^5.0.0",
"lorem-ipsum": "^2.0.3",
"md5": "^2.3.0",
"mime-types": "^2.1.30",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"tslib": "^2.1.0",
"uuid": "^8.3.2"
}
}