-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.16 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
{
"name": "named-promise-task",
"version": "1.3.0",
"description": "No Queue, Just a simple promise mechanics to help you run serial tasks.",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"scripts": {
"lint": "standard --parser=babel-eslint --fix src",
"build": "rollup -c",
"dev": "rollup -c -w"
},
"author": "LI Long <[email protected]>",
"license": "MIT",
"dependencies": {
"eventemitter3": "^4.0.7"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "7.10.4",
"@babel/register": "^7.10.5",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-replace": "^2.3.3",
"babel-eslint": "^10.1.0",
"core-js": "^3.6.5",
"eslint": "^7.5.0",
"rollup": "^2.23.0",
"standard": "^14.3.4"
},
"files": [
"dist/**"
],
"engines": {
"node": ">= 10.0.0"
}
}