-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.75 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
{
"name": "dnslint",
"version": "1.1.99",
"description": "XYO Internal Domain Tool",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"pretest": "yarn install",
"test": "yarn lint",
"cli": "node dist/cli.js",
"develop": "ts-node --files src/cli.ts",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect",
"lint": "yarn eslint . --ext .js,.jsx,.ts,.tsx"
},
"bin": {
"dnslint": "bin/dnslint"
},
"files": [
"dist",
"bin",
"config"
],
"repository": {
"type": "git",
"url": "https://github.com/XYOracleNetwork/tool-domains-nodejs.git"
},
"author": "Arie Trouw",
"license": "LGPL-3.0",
"engineStrict": true,
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@xyo-network/sdk-base-nodejs": "^0.6.9",
"assert": "^2.0.0",
"aws-sdk": "^2.453.0",
"axios": "^0.19.2",
"chalk": "^3.0.0",
"commander": "^4.0.1",
"dns-packet": "^5.2.1",
"dotenv-expand": "^5.1.0",
"html-validator": "^5.1.14",
"is-circular": "^1.0.2",
"load-json-file": "^6.0.0",
"lodash": "^4.17.15",
"snyk": "^1.290.2"
},
"devDependencies": {
"@types/lodash": "^4.14.126",
"@types/node": "^13.1.1",
"@types/stream-buffers": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"ajv": "^6.10.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"object.assign": "^4.1.0",
"object.entries": "^1.1.2",
"ts-node": "^8.1.0",
"typescript": "^3.7.5",
"yarn": "^1.16.0"
},
"snyk": true
}