-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.57 KB
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
{
"name": "githublint",
"version": "1.0.28",
"description": "XYO Internal Github Tool",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"pretest": "yarn install",
"lint": "tslint --config tslint.json src/**/*.ts",
"test": "yarn lint",
"build": "yarn schema && yarn lint && yarn tsc",
"schema": "yarn json2ts -i ./src/schema/githublint.schema.json -o ./src/types/schema.d.ts --no-style.semi",
"cli": "yarn build && node dist/cli.js",
"develop": "yarn build && ts-node --files src/cli.ts"
},
"bin": {
"githublint": "bin/githublint"
},
"files": [
"dist",
"bin"
],
"repository": {
"type": "git",
"url": "https://github.com/XYOracleNetwork/tool-github-nodejs.git"
},
"author": "Arie Trouw",
"license": "INTERNAL XY USE ONLY",
"engineStrict": true,
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@arietrouw/rest": "^16.25.2",
"assert": "^1.4.1",
"aws-sdk": "^2.450.0",
"axios": "^0.18.0",
"chalk": "^2.4.2",
"commander": "^2.19.0",
"dotenv-expand": "^5.1.0",
"fs-extra": "^7.0.1",
"load-json-file": "^6.0.0",
"lodash": "^4.17.11"
},
"devDependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/fs-extra": "^5.1.0",
"@types/lodash": "^4.14.123",
"@types/node": "^12.0.0",
"@types/stream-buffers": "^3.0.3",
"@xyo-network/config-tslint": "^0.1.31",
"json-schema-to-typescript": "^6.1.3",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.4.5",
"yarn": "^1.15.2"
}
}