forked from tryggingamidstodin/node-jt400
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.95 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
{
"name": "node-jt400",
"author": "Tryggingamiðstöðin <[email protected]>",
"version": "4.4.1",
"description": "JT400 (IBM Toolbox) for NodeJS",
"main": "dist/lib/jt400.js",
"types": "dist/lib/jt400.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/tryggingamidstodin/node-jt400.git"
},
"files": [
"dist/lib",
"java/lib"
],
"scripts": {
"format-verify": "prettier --check ./lib/** ./test/*.ts",
"format": "prettier --write ./lib/** ./test/*.ts",
"lint": "tslint --project .",
"test": "mocha -r source-map-support/register --exit dist/unit-test -t 1000",
"integration-test": "mocha -r source-map-support/register --exit dist/integration-test -t 10000",
"build": "tsc",
"clean": "rm -rf dist/",
"build-dev": "tsc --watch",
"test-dev": "mocha dist/test --watch",
"build-all": "npm run build && npm run build-java",
"build-java": "ant archive -buildfile ./java",
"ci": "npm run clean && npm run build && npm run test && npm run integration-test"
},
"keywords": [
"typescript",
"javascript",
"as400",
"IBM",
"java",
"db2",
"jdbc",
"jt400"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tryggingamidstodin/node-jt400/issues"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"JSONStream": "^1.3.2",
"flushwritable": "^1.0.0",
"java": "^0.12.2",
"oops-error": "^2.4.0",
"q": "^1.5.1"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^18.7.5",
"chai": "^4.3.4",
"husky": "^8.0.1",
"mocha": "^9.0.3",
"prettier": "^2.3.2",
"source-map-support": "^0.5.21",
"stream-equal": "^2.0.1",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"typescript": "^4.3.5"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run format-verify",
"pre-push": "npm run build && npm run test"
}
}
}