forked from hirosan18/timer-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.29 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.29 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": "timer-queue",
"description": "time-delayed function queue",
"version": "1.0.0",
"author": "Hiroaki Sano <hirosan18>",
"dependencies": {
"sleep-promise": "^6.0.0"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.3",
"babel-preset-env": "^1.6.1",
"cross-env": "^5.1.4",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"jest": "^22.4.3",
"rimraf": "^2.6.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"
}
}