-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 953 Bytes
/
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
{
"name": "fckzorrilla",
"version": "1.2.0",
"description": "This is a userscript that hides all Mikel Zorrilla's posts from Espinof.com.",
"author": "[email protected]",
"license": "GPL-3.0-only",
"private": true,
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"scripts": {
"dev": "rollup -wc rollup.conf.js",
"clean": "del dist types",
"build:js": "rollup -c rollup.conf.js",
"prebuild": "npm run ci && npm run clean",
"build": "npm run build:js --production",
"ci": "npm run lint",
"lint": "eslint --ext .ts,.tsx ."
},
"dependencies": {
"@babel/runtime": "^7.12.1",
"@violentmonkey/dom": "^1.0.9",
"@violentmonkey/ui": "^0.4.0"
},
"devDependencies": {
"@gera2ld/plaid": "~2.1.3",
"@gera2ld/plaid-common-react": "~2.1.3",
"@gera2ld/plaid-rollup": "~2.1.3",
"husky": "^4.3.0",
"del-cli": "^3.0.1",
"@gera2ld/plaid-common-ts": "~2.1.5"
}
}