-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 890 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 890 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
29
30
31
32
33
34
35
{
"name": "glasnostic-api",
"version": "1.0.0",
"description": "",
"files": [
"dist/**/*"
],
"main": "dist/glasnostic-api.js",
"scripts": {
"build": "rollup -c",
"format": "tslint --force --fix -p . && prettier --write src/**/* example/**/*",
"lint": "tslint -p . && prettier -c src/**/* example/**/*",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">= 10.0.0"
},
"author": "zjwu <zjwu@glasnostic.com>",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^4.1.2",
"@types/lodash": "^4.14.155",
"@types/tough-cookie": "^4.0.0",
"prettier": "^2.0.5",
"rollup": "^2.15.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.3"
},
"dependencies": {
"got": "^11.2.0",
"lodash": "^4.17.21",
"tough-cookie": "^4.0.0"
}
}