forked from shouldbee/reserved-usernames
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 914 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
{
"name": "@depasquale/reserved-usernames",
"version": "0.0.3",
"author": "Forked from github.com/shouldbee/reserved-usernames, modified by Anthony DePasquale ([email protected])",
"description": "Reserved user names for new projects",
"repository": {
"type": "git",
"url": "https://github.com/DePasqualeOrg/reserved-usernames"
},
"keywords": [],
"type": "module",
"main": "build/index.js",
"types": "build/types/index.d.ts",
"scripts": {
"build": "tsc",
"start": "node build/index.js"
},
"files": [
"LICENSE",
"package.json",
"build",
"src"
],
"devDependencies": {
"@depasquale/eslint-config-typescript": "^0.0.3",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.26.0",
"typescript": "^4.7.4"
}
}