-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.71 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
{
"name": "js-xcall",
"version": "1.3.1",
"description": "A Simple Events Dispatcher Singleton Class.",
"main": "lib/index.js",
"module": "es/index.js",
"unpkg": "dist/xcall.js",
"main-source": "lib/index.source.js",
"module-source": "es/index.source.js",
"unpkg-source": "dist/xcall.source.js",
"iife": "xcall.min.js",
"iife-source": "xcall.source.js",
"scripts": {
"tsc": "tsc",
"build": "rollup -c",
"test": "test",
"clear": "rimraf ./node_modules && npm run remove",
"remove": "rimraf ./dist && rimraf ./es && rimraf ./lib",
"doc": "typedoc --options ./typedoc.json",
"pub": "npm install && npm run build && npm run doc && npm publish",
"push:before": "npm run build && npm run doc"
},
"files": [
"/lib",
"/es",
"/dist",
"/xcall.min.js",
"/xcall.source.js",
"/index.d.ts",
"/index.d.ts.map",
"/README.en.md",
"/README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/biugle/js-xcall.git"
},
"author": "hxb",
"publisher": "[email protected]",
"blog": "http://a.biugle.cn",
"license": "ISC",
"bugs": {
"url": "https://github.com/biugle/js-xcall/issues"
},
"homepage": "https://github.com/biugle/js-xcall#readme",
"keywords": [
"xcall",
"js-xcall",
"call",
"eventbus",
"typescript",
"rollup"
],
"devDependencies": {
"typescript": "^4.5.5",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/node": "^17.0.17",
"node-cmd": "^5.0.0",
"rollup": "^2.67.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"typedoc": "^0.24.7",
"typedoc-plugin-markdown": "^3.15.3"
}
}