-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.16 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
67
68
69
70
{
"name": "webapp-menu",
"version": "2.2.7",
"description": "Create accessible menus for web apps (eg. file, edit, context menus)",
"main": "dist/webapp-menu.js",
"scripts": {
"test": "karma start",
"test:watch": "karma start --auto-watch=true --single-run=false",
"test:debug": "karma start --auto-watch=true --single-run=false --browsers Chrome",
"start": "rollup -w -c rollup.config.js & es-dev-server --app-index dist/index.html --watch --open",
"develop": "rimraf dist && rollup -c rollup.config.js",
"build:site": "npm run build && npm run build:storybook",
"build": "rimraf dist && rollup -c rollup.config.js --configProduction",
"prepare": "npm run build",
"storybook": "start-storybook -p 6006",
"build:storybook": "build-storybook -o dist/storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/angrycat9000/webapp-menu.git"
},
"author": "Mark Dane",
"contributors": [
"Alex Umstead"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/angrycat9000/webapp-menu/issues"
},
"homepage": "https://github.com/angrycat9000/webapp-menu#readme",
"dependencies": {
"tiny-emitter": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@open-wc/semantic-dom-diff": "^0.19.4",
"@open-wc/testing": "^2.3.6",
"@open-wc/testing-karma": "^4.0.9",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@storybook/addon-actions": "^6.3.7",
"@storybook/addon-docs": "^6.3.7",
"@storybook/addon-storysource": "^6.3.7",
"@storybook/html": "^6.3.7",
"babel-loader": "^8.0.6",
"cssnano": "^5.0.7",
"deepmerge": "^4.2.1",
"es-dev-server": "^2.1.0",
"karma": "^6.3.4",
"node-sass": "^6.0.0",
"postcss": "^8.0.0",
"rimraf": "^3.0.0",
"rollup": "^2.56.2",
"rollup-plugin-index-html": "^1.5.6",
"rollup-plugin-license": "^2.5.0",
"rollup-plugin-sass": "^1.2.4",
"rollup-plugin-svg": "^2.0.0",
"rollup-plugin-terser": "^7.0.2"
},
"keywords": [
"menu",
"toolbar",
"ui",
"accessible",
"webapp",
"popup",
"context menu",
"context toolbar"
]
}