-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.89 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": "zucryptwebstorage",
"version": "1.0.0",
"description": "ZuCryptWebStorage - End-to-End encrypted storage using official Web APIs of your browser environment",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc --project tsconfig.dev.json",
"build-prod": "npm run clean && tsc --project tsconfig.prod.json",
"typedoc": "typedoc --tsconfig tsconfig.prod.json ./src --out docs/code",
"clean": "tsc --build --clean && rm -rf docs/code && rm -rf coverage && rm -rf .nyc_output && rm -rf dist",
"fmt": "prettier --write .",
"codeanalysis": "eslint src",
"test": "nyc --require ts-node/register jasmine",
"browser-test": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZuInnoTe/zucryptwebstorage.git"
},
"keywords": [],
"author": "Jörn Franke <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ZuInnoTe/zucryptwebstorage/issues"
},
"homepage": "https://github.com/ZuInnoTe/zucryptwebstorage#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/jasmine": "^4.3.5",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.49.0",
"jasmine": "^4.6.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^4.0.2",
"karma-typescript": "^5.5.4",
"karma-typescript-es6-transform": "^5.5.4",
"minimist": "^1.2.8",
"nyc": "^15.1.0",
"prettier": "3.0.3",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typedoc": "^0.25.1",
"typescript": "^5.2.2"
},
"dependencies": {
"phc-winner-argon2-wasm": "file:thirdparty/phc-winner-argon2-wasm"
}
}