-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1 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
{
"name": "@ibm/ibmi-eventf-parser",
"description": "Parse event files that are generated by IBM i compilers",
"version": "1.0.2",
"publisher": "IBM",
"author": "IBM",
"license": "Apache-2.0",
"homepage": "https://github.com/IBM/ibmi-eventf-parser/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/IBM/ibmi-eventf-parser"
},
"bugs": {
"url": "https://github.com/IBM/ibmi-eventf-parser/issues"
},
"keywords": [
"ibmi",
"iseries",
"as400"
],
"main": "./dist/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"webpack": "webpack --mode production --config ./webpack.config.js",
"webpack:dev": "webpack --mode none --config ./webpack.config.js",
"test": "npx vitest run",
"test:dev": "npx vitest",
"coverage": "npx vitest run --coverage"
},
"devDependencies": {
"@vitest/coverage-v8": "^1.0.2",
"ts-loader": "^9.4.4",
"vitest": "^1.0.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}