-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.66 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.66 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
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
75
76
{
"name": "@quickcase/node-toolkit",
"version": "0.20.0",
"description": "NodeJS toolkit for QuickCase",
"main": "lib/index.js",
"files": [
"lib/",
"test/"
],
"scripts": {
"prepare": "npm run build",
"build": "babel src/modules -d lib --ignore 'src/**/*.test.js' && babel src/test-modules -d test --ignore 'src/**/*.test.js'",
"test": "jest src"
},
"repository": {
"type": "git",
"url": "git://github.com/quickcase/node-toolkit.git"
},
"author": "QuickCase",
"license": "MIT",
"bugs": {
"url": "https://github.com/quickcase/node-toolkit/issues"
},
"homepage": "https://github.com/quickcase/node-toolkit#readme",
"dependencies": {
"axios": "^1.7.7",
"camelcase": "^6.2.0",
"jsonschema": "^1.4.0",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^2.0.3",
"redis": "^3.0.2"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.25.2",
"@babel/plugin-transform-modules-commonjs": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"jest": "^29.7.0"
},
"babel": {
"env": {
"test": {
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
}
},
"presets": [
[
"@babel/preset-env",
{
"loose": true,
"targets": {
"node": true
}
}
]
]
},
"jest": {
"coverageReporters": [
"text"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"moduleNameMapper": {
"^axios$": "<rootDir>/node_modules/axios/dist/node/axios.cjs"
}
}
}