-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 973 Bytes
/
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
{
"name": "queues_and_timers",
"version": "0.0.1",
"description": "Asynchronous queue handling and consumption.",
"main": "index.js",
"scripts": {
"//": " --- DEFAULTS ---",
"dev": "npx babel-node ./src/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mbilyanov/queues_and_timers.git"
},
"keywords": [
"node",
"server",
"data",
"api"
],
"author": "Milen Bilyanov",
"license": "MIT",
"homepage": "https://github.com/mbilyanov/queues_and_timers",
"dependencies": {
"babel-node": "0.0.1-security",
"npm": "^6.14.5"
},
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/node": "^7.10.1",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-private-methods": "^7.10.1",
"@babel/preset-env": "^7.10.2"
}
}