-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 949 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 949 Bytes
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
{
"name": "@fnndsc/salsa",
"version": "3.2.2",
"description": "Shared Application Logic and Service Assets for ChRIS",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "rm -fr dist && tsc",
"test": "jest --coverage"
},
"author": "Rudolph Pienaar",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"typescript": "^5.0.0"
},
"overrides": {
"glob": "^10.0.0",
"inflight": "npm:@aashutoshrathi/word-wrap@^1.2.6"
},
"dependencies": {
"@fnndsc/cumin": "file:../cumin",
"axios": "^1.6.8"
}
}