-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.04 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "do-tasks",
"version": "0.1.3",
"description": "do-tasks",
"main": "dist/index.min.js",
"module": "dist/index.esm.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"pretest": "pnpm run build",
"lint": "eslint --fix **/*.{ts,jsx,js,vue} & npm run format",
"format": "npx prettier --write .",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"test": "npx jest",
"prepublish": "pnpm run build",
"prepare": "npx husky install"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/wxwzl/do-tasks.git"
},
"typings": "dist",
"keywords": [
"task",
"pool",
"concurrence control"
],
"author": "wxwzl",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.16.7",
"@babel/preset-env": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@rollup/plugin-alias": "3.1.2",
"@rollup/plugin-commonjs": "19.0.0",
"@rollup/plugin-eslint": "8.0.1",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-typescript": "8.2.1",
"@types/jest": "26.0.24",
"@types/node": "16.4.0",
"@typescript-eslint/eslint-plugin": "4.28.3",
"@typescript-eslint/parser": "4.28.3",
"babel-jest": "27.4.6",
"conventional-changelog-cli": "2.1.1",
"core-js": "3.15.2",
"cross-env": "7.0.3",
"eslint": "7.30.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-html": "6.1.2",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-vue": "7.13.0",
"jest": "27.0.6",
"lint-staged": "11.0.0",
"path": "0.12.7",
"prettier": "2.3.2",
"rollup": "2.53.1",
"rollup-plugin-dts": "3.0.2",
"rollup-plugin-node-polyfills": "0.2.1",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-terser": "7.0.2",
"ts-jest": "27.0.4",
"tslib": "2.3.0",
"typescript": "4.3.5"
},
"dependencies": {
"@wxwzl/eventemitter": "^1.0.1"
}
}