-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.24 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
{
"name": "gtin-manager",
"version": "1.0.3",
"description": "GTIN Manager",
"main": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"test": "standardx src/**/*.ts && tsc --noEmit && jest --collectCoverage",
"prepare": "tsc"
},
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/riennevaplus/gtin-manager.git"
},
"keywords": [
"GTIN",
"EAN",
"generator",
"list",
"GCP"
],
"author": "RienNeVaPlus <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/riennevaplus/gtin-manager/issues"
},
"homepage": "https://github.com/riennevaplus/gtin-manager",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-typescript": "^7.16.0",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"babel-jest": "^27.3.1",
"coveralls": "^3.1.1",
"jest": "^27.3.1",
"standardx": "^7.0.0",
"ts-jest": "^27.0.7",
"typescript": "^4.0.8"
},
"standardx": {
"env": [
"jest"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
}
}