-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.27 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
{
"name": "eventsproxy",
"version": "1.3.4",
"description": "自定义事件代理",
"main": "dist/eventsproxy.js",
"types": "index.d.ts",
"scripts": {
"test": "nyc --reporter=text mocha --require @babel/register -t 3000 --reporter mochawesome",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"build": "npm run lint && rollup -c",
"lint": "./node_modules/.bin/eslint ./ --fix",
"prepublish": "npm run build && npm run test"
},
"keywords": [
"轻量自定义事件代理插件",
"解除回调地狱问题",
"多异步串行执行",
"全局订阅模式",
"UMD规范",
"async await事件兼容"
],
"author": "JohnApache",
"license": "MIT",
"dependencies": {
"@babel/runtime-corejs3": "^7.5.5"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"chai": "^4.2.0",
"codecov": "^3.5.0",
"eslint": "^5.9.0",
"mocha": "^6.2.0",
"mochawesome": "^4.1.0",
"nyc": "^14.1.1",
"rollup": "^1.20.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.3.0"
}
}