-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
58 lines (58 loc) · 1.61 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
{
"name": "ctxmenu",
"version": "2.0.0",
"description": "Tiny and Customizable Context Menu Generator",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build:demo": "tsc test/demo.ts --outDir docs --removeComments",
"build:src": "node util/convertStyles.js && rollup -c",
"build:test": "tsc -p test",
"build": "run-s build:*",
"postversion": "git push --follow-tags",
"prepublishOnly": "npm run version",
"test:cli": "jasmine-browser-runner runSpecs",
"test:interactive": "jasmine-browser-runner serve",
"test": "run-p \"build:* -- -w\" test:interactive",
"version": "node util/copyrightHeader.js && npm run build && npm run test:cli && git add ."
},
"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",
"@types/jasmine": "^5.1.4",
"jasmine-browser-runner": "^2.3.0",
"jasmine-core": "^5.1.1",
"npm-run-all": "^4.1.5",
"rollup": "^2.79.1",
"rollup-plugin-dts": "^4.2.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-analyzer": "^4.0.0",
"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"
]
}