-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.85 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
{
"name": "tiny-popup-menu",
"version": "1.0.10",
"description": "Tiny Popup Menu",
"main": "dist/tiny-popup-menu.js",
"module": "lib/tiny-popup-menu.js",
"types": "lib/tiny-popup-menu.d.ts",
"style": "lib/tiny-popup-menu.css",
"type": "module",
"files": [
"lib/**/*",
"dist/**/*"
],
"scripts": {
"watch": "rollup -w --config rollup.config.dist.js --dev",
"format": "eslint --fix src && prettier --write src",
"lint": "eslint src && prettier --check src",
"build": "npm run lint && rollup --config rollup.config.dist.js && rollup --config rollup.config.js"
},
"keywords": [
"menu",
"popup"
],
"author": "Gastón Zalba",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/GastonZalba/tiny-popup-menu.git"
},
"bugs": {
"url": "https://github.com/GastonZalba/tiny-popup-menu/issues"
},
"homepage": "https://github.com/GastonZalba/tiny-popup-menu#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.0",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.2.1",
"postcss": "^8.4.29",
"postcss-preset-env": "^9.1.3",
"prettier": "^2.2.1",
"rollup": "^3.20.7",
"rollup-plugin-banner2": "^1.2.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-serve": "^2.0.2",
"rollup-plugin-svg-import": "^2.1.0",
"sass": "^1.48.0",
"typescript": "^5.0.4"
},
"dependencies": {
"tiny-emitter": "^2.1.0"
}
}