-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.66 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
{
"name": "domain-namer",
"version": "1.0.2",
"description": "Generate and validate fully qualifed domain names and more",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"style": "eslint",
"test": "mocha",
"pretest": "npm run build",
"coverage": "nyc mocha",
"validate": "npm run style && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sirusblk/domain-namer.git"
},
"homepage": "https://github.com/Sirusblk/domain-namer#readme",
"engines": {
"node": ">= 12.0.0"
},
"keywords": [
"domain-namer",
"FQDN",
"domain",
"name",
"dns",
"record",
"hostname"
],
"author": "David McLaren (https://github.com/sirusblk)",
"license": "MIT",
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"**/*.spec.ts",
"test/",
"dist/"
]
},
"dependencies": {
"randexp": "^0.5.3"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"chai": "^4.3.4",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-semistandard": "^16.0.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.1",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"prettier-plugin-jsdoc": "^0.3.24",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}