forked from vercel/cosmosdb-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.43 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@zeit/cosmosdb-server",
"version": "0.9.0",
"description": "A Cosmos DB server implementation",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "github:zeit/cosmosdb-server",
"files": [
"cert.pem",
"key.pem",
"lib"
],
"bin": {
"cosmosdb-server": "lib/cli.js"
},
"scripts": {
"build": "tsc",
"format": "prettier --ignore-path .gitignore --write '{src/**/*.ts,test/*.ts}'",
"format-staged": "git diff --cached --diff-filter=d --name-only '*.ts' | xargs prettier --list-different",
"lint": "eslint --ignore-path .gitignore '{src,test}/**/*.ts'",
"lint-staged": "git diff --cached --diff-filter=d --name-only '*.ts' | xargs eslint",
"prepublishOnly": "yarn build",
"test": "yarn test-base && yarn test-sdk",
"test-base": "best -I test/index.ts -r ts-node/register --verbose",
"test-sdk": "./test/sdk.sh"
},
"dependencies": {
"@zeit/cosmosdb-query": "0.5.3",
"big-integer": "1.6.46",
"int64-buffer": "0.99.1007",
"lru-cache": "6.0.0",
"path-to-regexp": "3.1.0",
"raw-body": "2.4.1",
"uuid": "3.3.3"
},
"devDependencies": {
"@azure/cosmos": "3.3.1",
"@babel/core": "7.6.2",
"@types/lru-cache": "5.1.0",
"@types/node": "12.7.9",
"@types/uuid": "3.4.5",
"@typescript-eslint/eslint-plugin": "2.3.2",
"@typescript-eslint/parser": "2.3.2",
"@zeit/best": "0.5.3",
"@zeit/git-hooks": "0.1.4",
"eslint": "6.5.1",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "6.3.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.15.1",
"prettier": "1.18.2",
"ts-node": "8.4.1",
"typescript": "3.6.3"
},
"eslintConfig": {
"extends": [
"airbnb",
"prettier"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"no-unused-vars": "off",
"no-underscore-dangle": [
"error",
{
"allow": [
"_etag",
"_rid",
"_self",
"_ts"
]
}
]
},
"settings": {
"import/resolver": {
"node": {
"extensions": [
".js",
".ts"
]
}
}
}
},
"git": {
"pre-commit": [
"lint-staged",
"format-staged"
]
}
}