-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "web-enc-at-rest",
"version": "1.0.2",
"description": "Encryption-at-Rest for Web Apps Library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json && npm run docs",
"clean": "rm -rf coverage dist docs/dist",
"clean:modules": "rm -rf node_modules package-lock.json && npm install",
"docs": "jsdoc -c ./docs/conf.json -d ./docs/dist/",
"publish": "npm run build && npm publish",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --collectCoverageFrom=\"./src/**\"",
"lint": "eslint . --ext .js,.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erikh2000/web-enc-at-rest.git"
},
"keywords": [
"encryption-at-rest",
"password-based",
"password-based cryptography",
"password-based encryption",
"pbe",
"pkcs5",
"pkcs#5",
"offline-first"
],
"author": "Erik Hermansen",
"license": "MIT",
"bugs": {
"url": "https://github.com/erikh2000/web-enc-at-rest/issues"
},
"homepage": "https://github.com/erikh2000/web-enc-at-rest#readme",
"devDependencies": {
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@types/jest": "^28.1.1",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"jest": "^28.1.1",
"jsdoc": "^3.6.10",
"jsdoc-plugin-typescript": "^2.0.7",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"engines": {
"node": ">= 16"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"coverageThreshold": {
"global": {
"lines": 100
}
}
}
}