-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.1 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.1 KB
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
67
68
69
70
71
{
"name": "@scssyworks/context-builder",
"version": "0.5.4",
"description": "Create context menus with ease",
"main": "dist/umd/contextBuilder.js",
"module": "dist/esm/contextBuilder.esm.js",
"typings": "dist/typings/src/index.d.ts",
"scripts": {
"start": "rollup -c --watch --environment SERVE:true",
"build": "npm run typegen && rollup -c",
"test": "jest plugin.test.ts --coverage",
"typegen": "tsc --declaration --noEmit false --outDir dist/typings/ --emitDeclarationOnly --declarationMap"
},
"author": "scssyworks",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-private-methods": "^7.16.0",
"@babel/plugin-transform-async-to-generator": "^7.16.0",
"@babel/plugin-transform-regenerator": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-eslint": "^8.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.1.0",
"jest": "^27.3.1",
"rollup": "^2.59.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.4.4"
},
"keywords": [
"context-menu",
"context",
"menus",
"web-menus",
"menu",
"right-click",
"right-click-menu",
"builder",
"api",
"right",
"click"
],
"files": [
"dist/umd/",
"dist/esm/",
"dist/typings/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/scssyworks/context-builder.git"
},
"bugs": {
"url": "https://github.com/scssyworks/context-builder/issues"
},
"homepage": "https://github.com/scssyworks/context-builder#readme",
"dependencies": {
"is-promise": "^4.0.0"
}
}