This repository has been archived by the owner on Jul 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
71 lines (71 loc) · 1.7 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": "zenaton",
"version": "0.8.0",
"description": "Zenaton library",
"main": "lib/index.js",
"scripts": {
"build": "babel src/ --out-dir lib/",
"build:watch": "yarn build --watch --verbose",
"lint": "eslint --color .",
"format": "prettier --write '**/*.{js,json,css,md}'",
"prepublish": "yarn run lint && yarn run test && yarn run build",
"test": "mocha",
"test:watch": "mocha --watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/zenaton/zenaton-node.git"
},
"author": "Zenaton Inc",
"license": "MIT",
"bugs": {
"url": "https://github.com/zenaton/zenaton-node/issues"
},
"homepage": "https://zenaton.com",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@babel/runtime": "7.5.5",
"axios": "0.19.0",
"graphql-request": "^1.8.2",
"moment-timezone": "0.5.26",
"uuid": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "7.5.5",
"@babel/core": "7.5.5",
"@babel/plugin-transform-runtime": "7.5.5",
"@babel/preset-env": "7.5.5",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"dirty-chai": "2.0.1",
"eslint": "6.3.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "6.1.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-node": "9.2.0",
"eslint-plugin-prettier": "3.1.0",
"husky": "3.0.5",
"lint-staged": "9.2.5",
"mocha": "6.2.0",
"prettier": "1.18.2",
"proxyquire": "2.1.3",
"sinon": "7.4.2",
"sinon-chai": "3.3.0"
},
"keywords": [
"workflow",
"queue",
"jobs",
"background-jobs",
"cron",
"scheduler",
"delayed"
]
}