-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1022 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
{
"name": "@oauth-everything/profile",
"version": "1.0.0",
"description": "Types for @oauth-everything user profiles.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "eslint ./src/**/*.ts",
"build": "tsc -p .",
"clean": "rimraf dist",
"build-full": "npm run clean && npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/oauth-everything/profile.git"
},
"keywords": [
"oauth",
"profile"
],
"author": "Tyler Schrock <tschrock123@gmail.com>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/oauth-everything/profile/issues"
},
"homepage": "https://github.com/oauth-everything/profile",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.1.0",
"@typescript-eslint/parser": "^2.1.0",
"eslint": "^6.3.0",
"rimraf": "^3.0.0",
"typescript": "^3.6.2"
}
}