-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.26 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
{
"name": "checkpac",
"version": "1.2.0",
"description": "Validate PAC/STAC codes, with rich metadata included",
"homepage": "https://github.com/dylmye/checkpac",
"author": "Dylan Myers (https://dylmye.me)",
"license": "ISC",
"keywords": [
"pac",
"stac",
"cellular",
"mobile",
"MVNO",
"MNO",
"number",
"validation",
"validator"
],
"main": "lib/index",
"types": "lib/index.d.ts",
"scripts": {
"test": "mocha",
"build": "tsc",
"schema": "typescript-json-schema src/types.ts Metadata -o lib/metadata.schema.json --strictNullChecks --required",
"prepublish": "yarn build && yarn schema"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.9",
"@types/expect": "^24.3.0",
"@types/mocha": "^8.2.3",
"mocha": "^8.4.0",
"ts-mocha": "^9.0.2",
"typescript": "^4.5.5",
"typescript-json-schema": "^0.53.0"
},
"files": [
"/lib"
],
"engines": {
"node": ">10.12.0"
},
"repository": "github:dylmye/checkpac",
"bugs": {
"url": "https://github.com/dylmye/checkpac/issues"
},
"directories": {
"lib": "./lib",
"src": "./src",
"test": "./test"
},
"mocha": {
"extension": [
"ts"
],
"spec": "test/**/*.spec.ts",
"require": "ts-mocha"
}
}