-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.59 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.59 KB
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
{
"name": "test",
"version": "1.0.0",
"description": "E2E test for NDID platform",
"scripts": {
"test": "node --security-revert=CVE-2023-46809 node_modules/mocha/bin/_mocha src/tests/index.js --require @babel/register --require source-map-support/register",
"test-with-kms": "USE_EXTERNAL_CRYPTO_SERVICE=true npm run test-exit-on-error",
"test-exit-on-error": "node --security-revert=CVE-2023-46809 node_modules/mocha/bin/_mocha src/tests/index.js --require @babel/register --require source-map-support/register --bail",
"test-with-ndid-http-headers": "HTTP_HEADER_NDID_MEMBER_APP_TYPE=custom_member_app HTTP_HEADER_NDID_MEMBER_APP_VERSION=1.0.0 npm run test-exit-on-error"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ndidplatform/test.git"
},
"bugs": {
"url": "https://github.com/ndidplatform/test/issues"
},
"homepage": "https://github.com/ndidplatform/test#readme",
"dependencies": {
"asn1.js": "^5.4.1",
"bigint-buffer": "^1.1.5",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"node-fetch": "^2.7.0",
"simple-backoff": "^1.1.0",
"source-map-support": "^0.5.21",
"uuid": "^3.4.0",
"ws": "^8.16.0"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.7",
"@babel/eslint-parser": "^7.17.0",
"@babel/eslint-plugin": "^7.17.7",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.17.7",
"chai": "^4.4.1",
"eslint": "^8.57.0",
"mocha": "^10.4.0"
}
}