-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
36 lines (36 loc) · 1.08 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
{
"name": "@elastic/node-crypto",
"version": "1.2.3",
"description": "Easy (yet strong) encryption and decryption facilities for Node.js",
"main": "lib/crypto.js",
"types": "lib/crypto.d.ts",
"scripts": {
"clean": "rm -rf lib coverage",
"build": "npm run clean && tsc",
"coverage": "jest --coverage",
"test": "npm audit && npm run lint && npm run build && npm run unit",
"lint": "tslint -p tsconfig.json -c tslint.json",
"unit": "jest"
},
"repository": {
"url": "git+https://github.com/elastic/node-crypto.git"
},
"author": "Shaunak Kashyap (https://github.com/ycombinator)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/elastic/node-crypto/issues"
},
"homepage": "https://github.com/elastic/node-crypto#readme",
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "20.10.5",
"jest": "^29.6.1",
"prettier": "^1.19.1",
"retire": "^5.1.1",
"ts-jest": "29.2.2",
"tslint": "5.16.0",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.0.1",
"typescript": "5.1.6"
}
}