This repository was archived by the owner on Apr 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.68 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
{
"name": "overflow-menu",
"description": "A library to move menu items into an overflow menu when they will not fit on one line.",
"version": "1.0.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/erik-perri/overflow-menu.git"
},
"scripts": {
"lint": "eslint --ext .ts src/*",
"watch": "rollup -c --watch",
"build": "rollup -c --environment PRODUCTION"
},
"files": [
"/dist"
],
"main": "dist/overflow-menu.cjs.js",
"module": "dist/overflow-menu.esm.js",
"browser": "dist/overflow-menu.umd.js",
"minified": "dist/overflow-menu.umd.min.js",
"unpkg": "dist/overflow-menu.umd.min.js",
"types": "dist/types/index.d.ts",
"browserslist": [
"defaults"
],
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"@types/css-font-loading-module": "^0.0.4"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-replace": "^2.3.4",
"@tsconfig/recommended": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"eslint": "^7.14.0",
"eslint-plugin-compat": "^3.8.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.2.0",
"rollup": "^2.33.3",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"typescript": "^4.1.2"
}
}