-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (58 loc) · 1.37 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "async-task-mapping",
"version": "1.0.4",
"main": "dist/index.js",
"module": "dist/index.js",
"author": "Jiegang Liang (t.n.t)",
"homepage": "https://github.com/TNT-03/async-task-mapping#readme",
"dependencies": {
"rollup-plugin-json": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-html": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"jest": "^29.5.0",
"rollup": "^2.69.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.3.1"
},
"files": [
"dist"
],
"scripts": {
"test": "npm run build && jest",
"dev": "rollup -c config/rollup.config.dev.js",
"build": "rollup -c config/rollup.config.build.js",
"release": "npm run build && npm publish"
},
"license": "MIT",
"description": "Asynchronous Task Manager.",
"npmName": "async-task-mapping",
"keywords": [
"async",
"task",
"mapping",
"list",
"await",
"promise",
"batch",
"request",
"manage"
],
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}