-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.03 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.03 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
{
"name": "workery",
"version": "0.0.0",
"main": "dist/index.js",
"author": "phra",
"license": "MIT",
"scripts": {
"prepublish": "yarn run build",
"build": "tsc -p .",
"commit": "git-cz",
"lint": "tslint -p .",
"lint:fix": "tslint --fix -p .",
"upgrade": "yarn upgrade-interactive",
"pretest": "echo pretest",
"start": "ts-node --fast index.ts",
"test": "echo test",
"validate": "yarn check"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"pre-commit": [
"lint",
"validate",
"build",
"pretest",
"test"
],
"dependencies": {
"@types/dotenv": "^4.0.1",
"@types/node": "^8.0.28",
"amqplib": "^0.5.1",
"deep-freeze": "^0.0.1",
"dotenv": "^4.0.0",
"sand-require": "^1.1.0",
"typescript": "^2.5.2"
},
"devDependencies": {
"@types/amqplib": "^0.5.4",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"precommit-hook": "^3.0.0",
"ts-node": "^3.3.0",
"tslint": "^5.7.0"
}
}