-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.07 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
{
"name": "eveit",
"version": "0.0.5",
"description": "Event-emitter with strong support for type hints",
"repository": "git@github.com:theajack/eveit.git",
"author": "tackchen <theajack@qq.com>",
"main": "eveit.min.js",
"unpkg": "eveit.iife.js",
"jsdelivr": "eveit.iife.js",
"typings": "eveit.min.d.ts",
"scripts": {
"lint": "eslint --fix --ext .js --ext .ts scripts src",
"dev": "node scripts/dev/dev.js",
"build": "node scripts/build/build.js && node scripts/build/build.js iife",
"dev:docs": "node scripts/docs/dev.js",
"build:docs": "node scripts/docs/build.js",
"purge": "node scripts/purge-cdn.js",
"release": "node scripts/push-release.js",
"publish": "node scripts/publish.js"
},
"keywords": [
"event-emitter"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/theajack/eveit/issues"
},
"homepage": "https://shiyix.cn/jsbox/?github=theajack.eveit",
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-yaml": "^3.1.0",
"@types/node": "^18.0.1",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"esbuild": "^0.14.47",
"esbuild-plugin-d.ts": "^1.1.0",
"esbuild-plugin-yaml": "^0.0.1",
"eslint": "^8.18.0",
"execa": "4.0.2",
"lerna": "^5.1.5",
"npm-run-all": "^4.1.5",
"rollup": "^2.75.7",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-typescript2": "^0.32.1",
"rollup-plugin-uglify": "^6.0.4",
"serve": "^13.0.2",
"single-line-log": "^1.1.2",
"tslib": "^2.8.1",
"typescript": "^4.7.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}