-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
{
"name": "@karthikmam/job-manager",
"version": "0.0.11",
"description": "A Simple Job Manager",
"main": "dist/bundle.js",
"scripts": {
"prepublish": "rollup -c",
"lint": "eslint ."
},
"author": "Karthik M A M <[email protected]> (https://karthikmam.com)",
"license": "MIT",
"standard": {
"parser": "babel-eslint"
},
"devDependencies": {
"@babel/core": "^7.0.1",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-eslint": "^9.0.0",
"eslint": "^5.5.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"rollup": "^0.65.2",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-terser": "^2.0.2"
},
"keywords": [
"rate limit",
"burst limit",
"job scheduler",
"lifo",
"fifo",
"dispatcher",
"scraping",
"crawling",
"job manager"
],
"files": [
"dist/**/*"
]
}