forked from nkappler/ctxmenu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "ctxmenu",
"version": "1.6.2",
"description": "Tiny and Customizable Context Menu Generator",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "tsc test/demo.ts --outDir docs --removeComments",
"prepublishOnly": "npm run version",
"postversion": "git push --follow-tags",
"version": "node util/copyrightHeader.js && npm run build && npm run test && git add .",
"build": "node util/convertStyles.js && rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nkappler/ctxmenu.git"
},
"author": "Nikolaj Kappler",
"license": "MIT",
"bugs": {
"url": "https://github.com/nkappler/ctxmenu/issues"
},
"homepage": "https://nkappler.github.io/ctxmenu",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.3",
"rollup": "^2.79.1",
"rollup-plugin-dts": "^4.2.3",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.6.2",
"typescript": "^4.9.5"
},
"files": [
"README.md",
"LICENSE",
"index.js",
"index.min.js",
"index.d.ts",
"standalone/ctxmenu.js",
"standalone/ctxmenu.min.js"
],
"keywords": [
"context menu",
"contextmenu",
"context",
"menu",
"rightclick"
]
}