-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.49 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": "@lsby/orm-data",
"version": "0.1.1",
"main": "dist/esm/index.mjs",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.mjs"
},
"scripts": {
"pub": "npm run build && npm run test && npm publish --access=public",
"build:esm": "tsup src/**/*.ts --format esm --clean --dts -d dist/esm",
"build:cjs": "tsup src/**/*.ts --format cjs --clean --dts -d dist/cjs",
"build": "npm run build:esm && npm run build:cjs",
"test": "npx ts-mocha --timeout 99999999 --colors --bail test/**/*.test.ts",
"test_nyc": "npx nyc --reporter=html --reporter=text-summary ts-mocha --timeout 99999999 --colors --bail test/**/*.test.ts && npx open-cli ./coverage/index.html"
},
"files": [
"/dist/**/*"
],
"license": "GPL-3.0-or-later",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.3.4",
"@types/lodash": "^4.17.9",
"@types/mocha": "^8.2.2",
"@types/node": "^22.7.0",
"chai": "^4.3.7",
"nyc": "^15.1.0",
"open-cli": "^7.2.0",
"ts-mocha": "^8.0.0",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"typescript": "<5.6.0"
},
"dependencies": {
"lodash": "^4.17.21"
},
"packageManager": "pnpm@9.10.0+sha512.73a29afa36a0d092ece5271de5177ecbf8318d454ecd701343131b8ebc0c1a91c487da46ab77c8e596d6acf1461e3594ced4becedf8921b074fbd8653ed7051c",
"repository": {
"type": "git",
"url": "https://github.com/lsby/ts-orm-data.git"
}
}