-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
80 lines (80 loc) · 3.14 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
{
"type": "module",
"name": "bigparser",
"version": "0.8.355",
"description": "BigParser API NPM Module",
"license": "MIT",
"homepage": "https://github.com/intellibus/bigparser#readme",
"repository": {
"type": "git",
"url": "https://github.com/intellibus/bigparser.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"bigparser",
"grids"
],
"scripts": {
"build": "tsc && fix-esm-import-path dist/*.js",
"esbuild": "esbuild src/*.ts --minify --outdir=dist --platform=node --target=node14 --format=esm",
"typedef": "tsc -d src/*.ts --declarationDir dist --emitDeclarationOnly",
"prepublish": "pnpm run build",
"format": "prettier --write ./**/*.ts",
"lint": "eslint ./**/*.ts -f mo",
"lint:fix": "eslint --fix ./**/*.ts -f mo",
"test:all": "DOTENV_CONFIG_PATH=./.env.test.local jest --config=.jestrc.json --testPathPattern=test/",
"test:unit": "DOTENV_CONFIG_PATH=./.env.test.local jest --config=.jestrc.json --testPathPattern=test/unit",
"test:unit:coverage": "DOTENV_CONFIG_PATH=./.env.test.local jest --config=.jestrc.json --coverage --testPathPattern=test/unit",
"test:unit:ci": "DOTENV_CONFIG_PATH=./.env.test.local jest --config=.jestrc.json --ci --coverage --testPathPattern=test/unit",
"test:integration": "DOTENV_CONFIG_PATH=./.env.test.local jest --config=.jestrc.json --bail --testPathPattern=test/integration",
"test:integration:coverage": "DOTENV_CONFIG_PATH=./.env.test.local jest --config=.jestrc.json --bail --coverage --testPathPattern=test/integration",
"test:integration:ci": "DOTENV_CONFIG_PATH=./.env.test.local jest --config=.jestrc.json --bail --ci --coverage --testPathPattern=test/integration",
"prepare": "husky install",
"semantic-release": "semantic-release"
},
"dependencies": {
"axios": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"@commitlint/types": "18.4.3",
"@semantic-release/commit-analyzer": "11.1.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "9.2.6",
"@semantic-release/npm": "11.0.2",
"@semantic-release/release-notes-generator": "12.1.0",
"@swc-node/jest": "1.5.2",
"@types/jest": "29.5.11",
"@types/node": "20.10.6",
"@typescript-eslint/eslint-plugin": "6.16.0",
"@typescript-eslint/parser": "6.16.0",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"dotenv": "16.3.1",
"esbuild": "0.19.11",
"eslint": "8.56.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-formatter-mo": "1.2.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"fix-esm-import-path": "1.5.0",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-mock-axios": "4.7.3",
"lint-staged": "15.2.0",
"prettier": "3.1.1",
"pretty-quick": "3.1.3",
"semantic-release": "22.0.12",
"semantic-release-interval": "1.0.46",
"ts-node": "10.9.2",
"typescript": "5.3.3"
}
}