-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.44 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.44 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
{
"name": "@saferinsulin/core",
"version": "2.0.2",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"compile": "tsc -p tsconfig.build.json",
"test": "c8 mocha",
"report-coverage": "c8 --reporter=text-lcov npm run test > coverage.lcov",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"oxlint": "oxlint ." ,
"build:cjs": "rollup ./out-tsc/src/calc.js --file ./dist/calc.cjs --format cjs",
"build:esm": "rollup ./out-tsc/src/calc.js --file ./dist/calc.js --format esm",
"build": "npm run compile && npm run build:cjs && npm run build:esm"
},
"author": "JP Lomas <[email protected]> (https://lomas.doctor/)",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/calc.js",
"require": "./dist/calc.cjs"
}
},
"devDependencies": {
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.10",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"c8": "^7.13.0",
"chai": "^4.3.7",
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"esm": "^3.2.25",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"oxlint": "^0.9.9",
"prettier": "^2.8.8",
"rollup": "^4.5.0",
"tsx": "^4.19.1",
"typescript": "^5.3.2"
},
"dependencies": {
"@saferinsulin/core": "^1.9.1"
}
}