-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 852 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 852 Bytes
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
{
"name": "my-userscripts",
"version": "1.0.0",
"description": "A collection of user scripts",
"private": true,
"scripts": {
"lint": "eslint .",
"format": "prettier --write \"**/*.{js,jsx,md,json,css,prettierrc,eslintrc,html}\"",
"check:format": "prettier --check \"**/*.{js,jsx,md,json,css,prettierrc,eslintrc,html}\"",
"check": "npm run lint && npm run check:format"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kufii/My-UserScripts.git"
},
"author": "Adrien Pyke",
"license": "ISC",
"bugs": {
"url": "https://github.com/kufii/My-UserScripts/issues"
},
"homepage": "https://github.com/kufii/My-UserScripts#readme",
"devDependencies": {
"eslint": "^8.8.0",
"eslint-config-adpyke-es6": "^1.4.13",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.5.1"
}
}