forked from dgraph-io/dgraph-js-http
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.52 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.52 KB
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
54
55
56
57
58
59
{
"name": "dgraph-js-http",
"version": "21.03.1",
"description": "A javascript HTTP client for Dgraph",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/dgraph-io/dgraph-js-http.git"
},
"bugs": {
"url": "https://github.com/dgraph-io/dgraph-js-http/issues"
},
"homepage": "https://github.com/dgraph-io/dgraph-js-http#readme",
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf coverage",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"lint:fix": "tslint --fix -t stylish --project \"tsconfig.json\"",
"pretest": "npm run lint",
"test": "npm run test-only",
"test-only": "jest --coverage --runInBand",
"test:watch": "jest --watch",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.7",
"coveralls": "^3.1.0",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"tslint": "^6.1.3",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^4.0.5"
},
"dependencies": {
"isomorphic-fetch": "^3.0.0",
"jsonwebtoken": "^8.5.1"
},
"prettier": {
"arrowParens": "avoid",
"tabWidth": 4,
"trailingComma": "all",
"overrides": [
{
"files": "*.{json,yml}",
"options": {
"tabWidth": 2
}
}
]
}
}