forked from elastic/request-crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.64 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
{
"name": "@elastic/request-crypto",
"version": "2.0.3",
"description": "Request Cryptography",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/elastic/request-crypto.git"
},
"scripts": {
"prepare": "npm run clean && npm run lint && npm run test && npm run build",
"test": "cross-env TS_NODE_FILES=true TS_NODE_PROJECT=./test/tsconfig.json mocha -r ts-node/register test/setup.ts 'test/**/*.spec.ts'",
"test:coverage": "cross-env TS_NODE_FILES=true TS_NODE_PROJECT=./test/tsconfig.json nyc npm run test",
"test:watch": "cross-env TS_NODE_FILES=true TS_NODE_PROJECT=./test/tsconfig.json mocha --watch --reporter=nyan",
"lint": "npm run lint:src && npm run lint:test",
"lint:src": "tslint -p tsconfig.json -c tslint.json",
"lint:test": "tslint -p ./test/tsconfig.json -c tslint.json",
"build": "tsc",
"clean": "rimraf lib",
"watch": "tsc -w"
},
"author": "Ahmad Bamieh <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@types/chai": "4.3.0",
"@types/expect": "1.20.3",
"@types/mocha": "9.1.0",
"@types/node": "20.10.5",
"chai": "4.3.6",
"cross-env": "5.2.0",
"mocha": "9.2.2",
"nyc": "15.1.0",
"prettier": "1.15.3",
"rimraf": "3.0.2",
"source-map-support": "0.5.21",
"ts-node": "7.0.1",
"tsconfig-paths": "3.6.0",
"tslint": "5.10.0",
"tslint-config-prettier": "1.17.0",
"tslint-plugin-prettier": "2.0.1",
"typescript": "5.1.6"
},
"dependencies": {
"@elastic/node-crypto": "^1.2.3",
"@types/node-jose": "1.1.10",
"node-jose": "2.2.0"
}
}