-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.39 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
{
"name": "tws-auth",
"version": "3.4.0",
"description": "Node.js SDK of TWS (Teambition Web Service) authorization service",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "rm -rf build && tsc",
"docs": "rm -rf docs && typedoc --out docs && touch docs/.nojekyll",
"test": "tman -r ts-node/register 'test/**/*.ts'",
"lint": "tslint -p tsconfig.json -t stylish 'src/**/*.ts' 'test/**/*.ts'"
},
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teambition/tws-auth.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/teambition/tws-auth/issues"
},
"homepage": "https://github.com/teambition/tws-auth#readme",
"dependencies": {
"app-root-path": "^3.0.0",
"http-errors": "^1.8.0",
"jsonwebtoken": "^8.5.1",
"request": "^2.88.2",
"tslib": "^2.0.0",
"user-agent-composer": "^0.1.2"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/http-errors": "^1.8.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.0.24",
"@types/request": "^2.48.5",
"standard": "^14.3.4",
"tman": "^1.10.0",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"tslint-eslint-rules": "^5.4.0",
"typedoc": "^0.17.8",
"typescript": "^3.9.7"
},
"files": [
"build",
"LICENSE",
"README.md",
"CHANGELOG.md"
]
}