-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
88 lines (88 loc) · 3.34 KB
/
package.json
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
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "mdb-reader",
"version": "3.0.1",
"description": "JavaScript library to read data from Access databases",
"main": "lib/node/index.js",
"browser": "lib/browser/index.js",
"types": "lib/types/index.d.ts",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"node": "./lib/node/index.js",
"default": "./lib/browser/index.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"type": "module",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/andipaetzold/mdb-reader.git"
},
"keywords": [
"mdb",
"microsoft",
"access",
"database"
],
"author": {
"name": "Andi Pätzold",
"email": "github@andipaetzold.com",
"url": "https://github.com/andipaetzold"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/andipaetzold/mdb-reader/issues"
},
"homepage": "https://github.com/andipaetzold/mdb-reader#readme",
"dependencies": {
"browserify-aes": "^1.0.0",
"create-hash": "^1.0.0",
"fast-xml-parser": "^4.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@tsconfig/node18": "18.2.4",
"@tsconfig/strictest": "2.0.5",
"@types/chai": "5.0.1",
"@types/mocha": "10.0.10",
"@types/mocha-each": "2.0.4",
"@types/node": "18.19.76",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"chai": "5.2.0",
"eslint": "8.57.1",
"mocha": "11.1.0",
"mocha-each": "2.0.1",
"rimraf": "6.0.1",
"semantic-release": "24.2.3",
"ts-node": "10.9.2",
"typescript": "5.7.3"
},
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "rimraf lib",
"prepare:node": "cp src/environment/node.ts src/environment/index.ts",
"prepare:browser": "cp src/environment/browser.ts src/environment/index.ts",
"build": "npm run build:node && npm run build:browser",
"build:node": "npm run prepare:node && tsc -P tsconfig.json",
"build:browser": "npm run prepare:browser && tsc -P tsconfig.browser.json",
"test": "npm run test:unit && npm run test:esm",
"test:unit": "npm run test:unit:node && npm run test:unit:browser",
"pretest:unit:node": "tsc --project tsconfig.json --showConfig > tsconfig.test.json",
"test:unit:node": "npm run prepare:node && TS_NODE_PROJECT='./tsconfig.test.json' mocha",
"posttest:unit:node": "rimraf tsconfig.test.json",
"pretest:unit:browser": "tsc --project tsconfig.browser.json --showConfig > tsconfig.test.json",
"test:unit:browser": "npm run prepare:browser && TS_NODE_PROJECT='./tsconfig.test.json' mocha",
"posttest:unit:browser": "rimraf tsconfig.test.json",
"test:esm": "npm run test:esm:node && npm run test:esm:browser",
"test:esm:node": "node --input-type=module -e \"import MDBReader from './lib/node/index.js';\"",
"test:esm:browser": "node --input-type=module -e \"import MDBReader from './lib/browser/index.js';\"",
"lint": "eslint . --ext .ts",
"semantic-release": "semantic-release"
}
}