-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.79 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
{
"name": "fixed-width-parser",
"version": "3.0.0",
"description": "A fixed width data parser",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/keawade/fixed-width-parser.git"
},
"author": {
"name": "Keith Wade",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/keawade/fixed-width-parser/issues"
},
"homepage": "https://github.com/keawade/fixed-width-parser",
"dependencies": {
"date-fns": "^2.28.0"
},
"devDependencies": {
"@types/jest": "^28.1.1",
"@types/node": "^16.11.39",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"jest": "^28.1.1",
"prettier": "^2.6.2",
"ts-jest": "^28.0.4",
"typescript": "^4.7.3"
},
"scripts": {
"build": "tsc",
"bump": "npm --no-git-tag-version version",
"prepublishOnly": "npm run build",
"test": "jest --coverage",
"test:watch": "npm run test -- --watch",
"check": "npm run check:eslint && npm run check:prettier && npm run check:build",
"check:build": "tsc --noEmit",
"check:eslint": "eslint src/** test/**",
"check:prettier": "prettier . --list-different",
"husky:pre-push": "npm run check",
"fix": "npm run fix:prettier && npm run fix:eslint",
"fix:eslint": "npm run check:eslint -- --fix",
"fix:prettier": "npm run check:prettier -- --write",
"prepare": "husky install"
},
"keywords": [
"fixed",
"fixed width",
"format",
"parser"
],
"engines": {
"node": ">=12.0.0"
}
}