forked from bitwarden/jslib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2 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
{
"name": "@bitwarden/jslib",
"version": "0.0.0",
"description": "Common code used across Bitwarden JavaScript projects.",
"keywords": [
"bitwarden"
],
"author": "Bitwarden Inc.",
"homepage": "https://bitwarden.com",
"repository": {
"type": "git",
"url": "https://github.com/bitwarden/jslib"
},
"license": "GPL-3.0",
"scripts": {
"clean": "rimraf dist/**/*",
"build": "npm run clean && ttsc",
"build:watch": "npm run clean && ttsc -watch",
"lint": "tslint '*/src/**/*.ts' 'spec/**/*.ts'",
"lint:fix": "tslint '*/src/**/*.ts' 'spec/**/*.ts' --fix",
"test": "karma start ./spec/support/karma.conf.js --single-run",
"test:watch": "karma start ./spec/support/karma.conf.js",
"test:node": "npm run build && jasmine",
"test:node:watch": "concurrently -k -n TSC,Node -c yellow,cyan \"npm run build:watch\" \"nodemon -w ./dist --delay 500ms --exec jasmine\""
},
"devDependencies": {
"@fluffy-spoon/substitute": "^1.202.0",
"@types/jasmine": "^3.7.6",
"@types/node": "^14.17.1",
"concurrently": "^6.1.0",
"jasmine": "^3.7.0",
"jasmine-core": "^3.7.1",
"jasmine-ts-console-reporter": "^3.1.1",
"jsdom": "^16.5.3",
"karma": "^6.3.2",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-detect-browsers": "^2.3.3",
"karma-firefox-launcher": "^2.1.0",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.5.4",
"karma-safari-launcher": "^1.0.0",
"karma-webpack": "^4.0.2",
"nodemon": "^2.0.7",
"rimraf": "^3.0.2",
"ts-loader": "^8.1.0",
"tslint": "^6.1.3",
"ttypescript": "^1.5.12",
"typemoq": "^2.1.0",
"typescript": "4.1.5",
"typescript-transform-paths": "^2.2.3",
"webpack": "^4.46.0"
},
"dependencies": {
"@bitwarden/jslib-angular": "file:angular",
"@bitwarden/jslib-common": "file:common",
"@bitwarden/jslib-electron": "file:electron",
"@bitwarden/jslib-node": "file:node"
},
"engines": {
"node": "~14",
"npm": "~7"
}
}