-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
39 lines (39 loc) Β· 938 Bytes
/
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
{
"name": "bark-js",
"version": "1.2.1",
"description": "Parse barcode inputs into a unified GS1-128 like format",
"homepage": "https://github.com/Sleavely/Bark-js",
"repository": "github:Sleavely/Bark-JS",
"author": "Joakim Hedlund <[email protected]>",
"keywords": [
"barcode",
"QR",
"parser",
"EAN",
"UPC",
"GS1"
],
"main": "index.js",
"scripts": {
"test": "jest --verbose --silent && eslint ."
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^24.9.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"jest": "^24.9.0",
"jest-extended": "^0.11.5"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"jest-extended"
]
},
"license": "MIT"
}