-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.21 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
{
"name": "tws-tcm",
"version": "1.2.0",
"description": "Node.js SDK of TWS (Teambition Web Service) cloud messaging 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-tcm.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/teambition/tws-tcm/issues"
},
"homepage": "https://github.com/teambition/tws-tcm#readme",
"dependencies": {
"app-root-path": "^3.0.0",
"tws-auth": "^3.2.6",
"user-agent-composer": "^0.1.2"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/node": "^12.12.7",
"standard": "^14.3.1",
"tman": "^1.9.0",
"ts-node": "^8.5.0",
"tslint": "^5.20.1",
"tslint-eslint-rules": "^5.4.0",
"typedoc": "^0.15.1",
"typescript": "^3.7.2"
},
"files": [
"build",
"LICENSE",
"README.md",
"CHANGELOG.md"
]
}