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
68 lines (68 loc) · 1.9 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.9 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
60
61
62
63
64
65
66
67
68
{
"name": "dgraph-offline-first",
"version": "20.7.1-rc1",
"description": "A javascript wrapper for dgraph-js-http transactions providing offline-first support",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/st-ax/dgraph-offline-first.git"
},
"bugs": {
"url": "https://github.com/st-ax/dgraph-offline-first/issues"
},
"homepage": "https://github.com/st-ax/dgraph-offline-first#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": "eslint -c .eslintrc.js --ext .ts",
"lint:fix": "eslint --fix -c .eslintrc.js --ext .ts",
"pretest": "yarn lint",
"test": "yarn test-only",
"test-only": "jest --coverage --runInBand",
"test:watch": "jest --watch",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"devDependencies": {
"@types/jest": "^24.0.9",
"@types/node": "^12.0.4",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"coveralls": "^3.0.2",
"eslint": "^7.7.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^30.2.4",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-unicorn": "^21.0.0",
"jest": "^24.1.0",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.0",
"typescript": "^3.5.1"
},
"dependencies": {
"@typescript-eslint/eslint-plugin-tslint": "^3.9.1",
"core-js": "^3.6.5",
"dgraph-js-http": "^20.7.1-rc1",
"is-online": "^8.4.0",
"tslint": "^6.1.3"
},
"prettier": {
"arrowParens": "avoid",
"tabWidth": 4,
"trailingComma": "all",
"overrides": [
{
"files": "*.{json,yml}",
"options": {
"tabWidth": 2
}
}
]
}
}