-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.47 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
{
"name": "harlaw",
"version": "1.1.11",
"description": "Transform DSL (Lingvo Dictionary File) files to JSON. Formatting options available for custom output.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/stscoundrel/harlaw.git",
"author": "stscoundrel <silvennoinen.sampo@gmail.com>",
"license": "MIT",
"private": false,
"engines": {
"node": ">=12.0.0"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.5.4",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"babel-jest": "^29.0.3",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^27.0.4",
"jest": "^29.6.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.8.1",
"typescript": "^5.0.3"
},
"scripts": {
"lint": "eslint .",
"fix": "eslint . --fix",
"test:unit": "jest tests/unit --verbose --passWithNoTests",
"test:integration": "jest tests/integration --verbose --runInBand --passWithNoTests",
"test:coverage": "jest --coverage --coverageThreshold='{\"global\":{\"statements\":\"80\", \"functions\":\"80\", \"branches\":\"80\", \"lines\":\"80\"}}'",
"build": "tsc",
"prepublishOnly": "yarn build && yarn test:unit"
}
}