-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
73 lines (73 loc) · 1.43 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
{
"name": "gtin",
"version": "1.0.2",
"description": "GTIN (UPC, EAN, ITF, etc.) utilities.",
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"test": "standardx src/**/*.ts && tsc --noEmit && jest --collectCoverage",
"prepare": "tsc"
},
"engines": {
"node": ">=10"
},
"browserslist": [
"> 1%",
"not ie > 0"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/xbpf/gtin.git"
},
"keywords": [
"gtin",
"upc",
"ean",
"ucc",
"itf",
"itf-14",
"itf14",
"ean-13",
"ean13",
"ucc-12",
"ucc12",
"upc-e",
"upce",
"upca",
"upc-a",
"validation",
"utilities",
"valid"
],
"author": "Ivan K <ivan@sq10.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/xbpf/gtin/issues"
},
"homepage": "https://github.com/xbpf/gtin#readme",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"babel-jest": "^26.6.3",
"coveralls": "^3.1.0",
"jest": "^26.6.3",
"standardx": "^7.0.0",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"standardx": {
"env": [
"jest"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
}
}