-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.92 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
{
"name": "@fastpanel/core",
"version": "0.2.1-alpha.1",
"description": "The main core of the \"fastPanel\" system.",
"author": "Desionlab <[email protected]> (http://www.desionlab.net/)",
"main": "build/index.js",
"types": "build/index.d.ts",
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"compile": "./node_modules/.bin/tsc",
"develop": "./node_modules/.bin/tsc --watch",
"docs": "./node_modules/.bin/typedoc --theme minimal --target 'esnext' --excludeNotExported --excludePrivate --ignoreCompilerErrors --out ./docs/ ./src/",
"test": "./node_modules/.bin/mocha --require ts-node/register test/**/*.spec.ts",
"build": "npm run test && npm run compile && npm run docs",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastpanel/core.git"
},
"bugs": {
"url": "https://github.com/fastpanel/core/issues"
},
"homepage": "https://github.com/fastpanel/core#readme",
"keywords": [
"nodejs",
"di",
"cli",
"worker",
"typescript"
],
"dependencies": {
"caporal": "^1.3.0",
"glob": "^7.1.4",
"inquirer": "^6.5.0",
"lodash": "^4.17.15",
"ora": "^3.4.0",
"prettyjson": "^1.2.1",
"progress": "^2.0.3",
"rotating-file-stream": "^1.4.3",
"semver": "^6.3.0",
"shelljs": "^0.8.3",
"validator": "^11.1.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.10.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/inquirer": "^6.5.0",
"@types/lodash": "^4.14.136",
"@types/mocha": "^5.2.7",
"@types/node": "^12.6.8",
"@types/prettyjson": "^0.0.29",
"@types/progress": "^2.0.3",
"@types/shelljs": "^0.8.5",
"@types/triple-beam": "^1.3.0",
"@types/validator": "^10.11.2",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"ts-node": "^8.3.0",
"typedoc": "^0.15.0",
"typescript": "^3.5.3"
},
"license": "MIT"
}