-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.91 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
{
"name": "git-credential-bw",
"version": "1.0.1",
"description": "Git Credential Helper for Bitwarden CLI",
"main": "dist/main.js",
"repository": "[email protected]:AZMCode/git-credential-bw.git",
"author": "AZMCode <[email protected]>",
"license": "MIT",
"private": true,
"bin": "./dist/main.js",
"scripts": {
"start": "node dist/main.js",
"watch:builder": "nodemon --config nodemon.json --exec 'yarn run build:code-fast'",
"watch:debug": "nodemon --config nodemon.json --exec 'yarn run build:code-fast && yarn run debug'",
"watch:debug-brk": "nodemon --config nodemon.json --exec 'yarn run build:code-fast && yarn run debug-brk'",
"watch:docs": "$INIT_CWD/devScripts/watchDocs.sh",
"clean:code": "$INIT_CWD/devScripts/cleanDir.sh dist && rm -rf $INIT_CWD/coverage",
"clean:docs": "$INIT_CWD/devScripts/cleanDir.sh docs/HTML",
"clean:all": "yarn run clean:docs && yarn run clean:code",
"purge": "yarn run clean:all && rm -rf node_modules",
"test": "jest --collectCoverage --passWithNoTests --config jest.config.json dist",
"test-fast": "jest --passWithNoTests --config jest.config.json dist",
"lint": "eslint -c .eslintrc --ext .ts,.tsx src",
"lint-rel": "eslint -c .eslintrc.rel --ext .ts,.tsx src",
"debug": "node --inspect dist/main.js",
"debug-brk": "node --inspect-brk dist/main.js",
"build:ts": "tsc -p tsconfig.json",
"build:ts-rel": "tsc -p tsconfig.rel.json",
"build:docs": "typedoc --options typedoc.json",
"build:code-fast": "$INIT_CWD/devScripts/copyFiles.sh && yarn run lint && yarn run build:ts && yarn run test-fast",
"build:code": "$INIT_CWD/devScripts/copyFiles.sh && yarn run lint && yarn run build:ts && yarn run test",
"build:code-rel": "$INIT_CWD/devScripts/copyFiles.sh && yarn run clean:code && yarn run lint-rel && yarn run build:ts-rel",
"build:all": "yarn run build:code && yarn run build:docs",
"build:all-rel": "yarn run build:code-rel && yarn run build:docs",
"bStart": "yarn run build:code && yarn run start"
},
"files": [
"dist/**/*",
"static/**/*"
],
"devDependencies": {
"@marcopeg/dotted": "^1.12.0",
"@types/jest": "^26.0.8",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"docdash": "^1.2.0",
"eslint": "^7.6.0",
"http-server": "^0.12.3",
"jest": "^26.1.0",
"jest-expect-message": "^1.0.2",
"livereload": "^0.9.1",
"nodemon": "^2.0.4",
"typedoc": "^0.17.8",
"typedoc-plugin-pages": "^1.0.1",
"typescript": "^3.9.7"
},
"dependencies": {
"@types/byline": "^4.2.32",
"@types/cross-spawn": "^6.0.2",
"@types/node-localstorage": "^1.3.0",
"@types/parse-git-config": "^3.0.0",
"cross-spawn": "^7.0.3",
"delay": "^4.4.0",
"get-stdin": "^8.0.0",
"node-localstorage": "^2.1.6",
"p-event": "^4.2.0",
"parse-git-config": "^3.0.0",
"stream-to-string": "^1.2.0"
}
}