-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 1.65 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
{
"name": "is-container",
"version": "2.0.0",
"description": "Validates a container number according to ISO 6346",
"main": "./dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"homepage": "https://github.com/ruanmartinelli/is-container#readme",
"author": {
"name": "Ruan Martinelli",
"email": "[email protected]",
"url": "https://ruanmartinelli.com"
},
"scripts": {
"prepublishOnly": "make prepublish",
"test": "make test",
"lint": "make lint",
"coverage": "make coverage",
"precommit": "make lint && git add ."
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/node": "^14.0.1",
"codecov": "^3.1.0",
"fast-check": "^2.0.0",
"husky": "6.0.0",
"jest": "^25.1.0",
"prettier": "^2.0.5",
"ts-jest": "^25.1.0",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.15.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.5.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ruanmartinelli/is-container.git"
},
"bugs": {
"url": "https://github.com/ruanmartinelli/is-container/issues"
},
"engines": {
"node": ">=6.0.0"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": ".*\\.spec\\.ts$",
"moduleFileExtensions": [
"ts",
"json",
"js"
],
"collectCoverageFrom": [
"src/**/*.ts"
],
"coverageThreshold": {
"global": {
"functions": 95,
"lines": 95,
"statements": 95
}
}
},
"keywords": [
"container",
"number",
"valid",
"check",
"iso6346",
"iso",
"6346",
"cargo"
]
}