-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.76 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
{
"name": "@fastpanel/account",
"version": "0.2.1-alpha.4",
"description": "Add-on to work with users of the system.",
"author": "Desionlab <[email protected]>",
"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 test && npm run compile && npm run docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastpanel/account.git"
},
"bugs": {
"url": "https://github.com/fastpanel/account/issues"
},
"homepage": "https://github.com/fastpanel/account#readme",
"keywords": [
"nodejs",
"typescript"
],
"dependencies": {
"passport": "^0.4.0",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@fastpanel/core": "^0.2.1-alpha.3",
"@fastpanel/http": "^0.2.1-alpha.3",
"@fastpanel/mongo": "^0.2.1-alpha.3",
"@fastpanel/redis": "^0.2.1-alpha.3",
"@types/chai": "^4.1.7",
"@types/inquirer": "^6.5.0",
"@types/mocha": "^5.2.7",
"@types/mongoose": "^5.5.11",
"@types/node": "^12.6.8",
"@types/passport": "^1.0.0",
"@types/passport-http-bearer": "^1.0.33",
"@types/passport-local": "^1.0.33",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"ts-node": "^8.3.0",
"typedoc": "^0.15.0",
"typescript": "^3.5.3"
},
"license": "MIT"
}