-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.57 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
{
"name": "mj-context-menu",
"version": "0.9.1",
"description": "A generic context menu",
"main": "dist/ContextMenu.js",
"scripts": {
"format": "prettier --check ts/",
"format-fix": "prettier --write ts/",
"lint": "eslint ts/ --ext .ts,.tsx",
"lint-fix": "eslint ts/ --ext .ts,.tsx --fix",
"es5": "npx tsc --target es5 --module commonjs --outDir cjs",
"postes5": "node -e 'require(\"fs\").writeFileSync(\"cjs/package.json\", \"{\\n \\\"type\\\": \\\"commonjs\\\"\\n}\\n\");'",
"es6": "npx tsc",
"build": "npm run es5; npm run es6; npx webpack",
"clean": "npx rimraf cjs; npx rimraf js; npx rimraf dist",
"prepare": "npm run clean; npm run build"
},
"maintainers": [
"Volker Sorge <[email protected]>"
],
"bugs": {
"email": "[email protected]",
"url": "https://github.com/zorkow/context-menu"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/zorkow/context-menu"
},
"keywords": [
"context-menu"
],
"homepage": "https://github.com/zorkow/context-menu",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"circular-dependency-plugin": "^5.2.2",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsdoc": "^44.2.0",
"prettier": "^2.8.8",
"terser-webpack-plugin": "^5.3.8",
"typescript": "^5.*",
"webpack": "^5.82.0",
"webpack-cli": "^5.1.1"
},
"files": [
"LICENSE",
"README.md",
"js",
"cjs",
"dist"
],
"type": "module"
}