-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·89 lines (89 loc) · 2.74 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
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "dai-auction-keeper",
"private": true,
"version": "1.0.0",
"description": "Example model written in typescript for the MakerDAO auction-keeper bot",
"main": "build/index.js",
"bin": {
"eth-model": "build/eth.js"
},
"types": "build/index.d.ts",
"scripts": {
"build": "npm run lint && npm run build:clean && npm run compile && chmod +x build/bin/* && cp .env build/.env",
"compile": "tsc",
"build:clean": "rm -rf build/*",
"debug": "ts-node-dev --inspect -- src/bin/eth.ts",
"debug:break": "ts-node-dev --inspect-brk -- src/bin/eth.ts",
"test": "exit 0",
"test:debug": "node --inspect-brk node_modules/.bin/jest",
"test:watch": "jest --watch",
"test:coverage:watch": "jest --coverage --watch",
"toc": "toc-md README.md README.md",
"add-readme": "git add README.md",
"lint-staged": "lint-staged",
"prepare-publish": "npm run changelog:verify && version-bump && npm run changelog:release",
"version-bump": "version-bump",
"changelog:help": "changelog-version",
"changelog:verify": "changelog-version verify",
"changelog:prepare": "changelog-version prepare",
"changelog:release": "changelog-version release",
"lint": "prettier-standard src/**/*.ts && standardx src/**/*.ts",
"ts-node-dev": "ts-node-dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theogravity/dai-auction-keeper.git"
},
"author": "Theo Gravity <theo@suteki.nu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/theogravity/dai-auction-keeper/issues"
},
"homepage": "https://github.com/theogravity/dai-auction-keeper#readme",
"dependencies": {
"dotenv": "^8.2.0",
"minimist": "^1.2.5",
"request": "^2.88.2",
"request-promise-native": "^1.0.8"
},
"devDependencies": {
"@theo.gravity/changelog-version": "2.1.10",
"@theo.gravity/version-bump": "1.2.6",
"@types/jest": "25.1.4",
"@types/node": "^13.9.1",
"@types/request": "^2.48.4",
"@types/request-promise-native": "^1.0.17",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"eslint": "6.8.0",
"jest": "^25.1.0",
"jest-cli": "^25.1.0",
"jest-junit-reporter": "1.1.0",
"lint-staged": "10.0.8",
"pre-commit": "1.2.2",
"prettier-standard": "16.2.1",
"standardx": "^5.0.0",
"toc-md-alt": "^0.3.2",
"ts-jest": "25.2.1",
"ts-node": "8.6.2",
"ts-node-dev": "1.0.0-pre.44",
"typescript": "3.8.3"
},
"standardx": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
},
"lint-staged": {
"src/**/*.ts": [
"prettier-standard",
"git add"
]
},
"pre-commit": [
"lint-staged",
"test",
"build"
]
}