-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.27 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.27 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
{
"name": "timer-queue",
"description": "time-delayed function queue",
"version": "1.1.0",
"author": "Hiroaki Sano <hirosan18>",
"dependencies": {
"sleep-promise": "^8.0.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.2.3",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^25.2.3",
"rimraf": "^3.0.2"
},
"keywords": [
"async",
"asynchronous",
"job",
"queue",
"queues",
"task",
"timer"
],
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/hirosan18/timer-queue.git"
},
"scripts": {
"build": "cross-env NODE_ENV=production eslint src && babel src --out-dir lib --source-maps inline",
"clean": "rimraf lib/ & rimraf coverage/",
"test": "cross-env NODE_ENV=test eslint src && jest --coverage",
"watch": "cross-env NODE_ENV=test jest --watch",
"release": "npm run test && npm run clean && npm run build && npm publish"
}
}