-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
84 lines (84 loc) · 1.72 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
81
82
83
84
{
"name": "parse-usdl",
"version": "3.2.0",
"main": "index.js",
"description": "parse Pdf417 barcode data from US driver licenses",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mvayngrib/parse-usdl"
},
"keywords": [
"barcode",
"code128",
"decode",
"driver-license",
"usdl"
],
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"standard",
"prettier",
"prettier/standard"
],
"plugins": [
"jest"
],
"env": {
"jest/globals": true
},
"globals": {
"fetch": true
},
"rules": {
"camelcase": "off",
"import/no-unresolved": "error",
"import/no-extraneous-dependencies": "error"
}
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"arrowParens": "always",
"trailingComma": "es5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,md}": [
"prettier --write",
"git add"
]
},
"jest": {
"verbose": true
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-jest": "^24.0.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.1",
"jest": "^24.8.0",
"lint-staged": "^8.1.1",
"prettier": "^1.16.1"
},
"dependencies": {},
"scripts": {
"lint": "eslint .",
"test": "jest --coverage",
"test-watch": "jest --watch"
}
}