This repository has been archived by the owner on Jul 19, 2022. It is now read-only.
forked from andipaetzold/mdb-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.71 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
{
"name": "@ahagandev/mdb-reader",
"version": "2.2.5",
"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",
"sideEffects": false,
"type": "module",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ahaganDEV/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.1",
"@semantic-release/git": "10.0.1",
"@tsconfig/node14": "^1.0.1",
"@types/jest": "27.5.0",
"@types/node": "14.18.16",
"@typescript-eslint/eslint-plugin": "5.22.0",
"@typescript-eslint/parser": "5.22.0",
"eslint": "8.14.0",
"jest": "28.1.0",
"rimraf": "3.0.2",
"semantic-release": "19.0.2",
"ts-jest": "28.0.1",
"ttypescript": "1.5.13",
"typescript": "4.4.4",
"typescript-transform-extensions": "1.0.1"
},
"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 && ttsc -P tsconfig.json",
"build:browser": "npm run prepare:browser && ttsc -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",
"test:unit:node": "npm run prepare:node && jest",
"test:unit:browser": "npm run prepare:browser && jest",
"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"
},
"publishConfig": {
"access": "public"
}
}