-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 985 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 985 Bytes
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": "another-easy-queue",
"version": "1.0.4",
"description": "Another easy queue for nodejs and browser",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"types": "dist/types",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"debug": "ts-node --project ./test/tsconfig.test.json ./test/debug.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tomb01/easy-queue.git"
},
"keywords": [
"queue"
],
"author": "tomb01",
"license": "ISC",
"bugs": {
"url": "https://github.com/Tomb01/easy-queue/issues"
},
"homepage": "https://github.com/Tomb01/easy-queue#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"rollup": "^2.49.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.2.4"
}
}