forked from edgedb/edgedb-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.81 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
{
"name": "edgedb",
"version": "0.20.6",
"description": "The official Node.js client library for EdgeDB",
"homepage": "https://edgedb.com/docs",
"author": "EdgeDB <info@edgedb.com>",
"engines": {
"node": ">= 10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/edgedb/edgedb-js.git"
},
"main": "./dist/index.node.js",
"types": "./dist/index.node.d.ts",
"license": "Apache-2.0",
"files": [
"/dist"
],
"browser": {
"./dist/index.node.js": "./dist/index.browser.js"
},
"bin": {
"edgeql-js": "./dist/reflection/cli.js"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "14",
"get-stdin": "^7.0.0",
"jest": "^26.6.3",
"node-fetch": "2.6.7",
"nodemon": "^2.0.13",
"prettier": "^2.3.2",
"proposal-temporal": "^0.7.0",
"ts-jest": "^26.5.2",
"ts-node": "^10.0.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.5.2"
},
"scripts": {
"build": "yarn build:cjs && yarn build:esm && yarn copy:syntax",
"build:esm": "tsc --project tsconfig.build-esm.json",
"build:cjs": "tsc --project tsconfig.build.json",
"copy:syntax": "./tools/copySyntaxToDist.sh",
"test": "jest --detectOpenHandles",
"test:all": "yarn test && yarn test:qb",
"test:qb": "cd qb && yarn test",
"lint": "tslint 'src/**/*.ts'",
"format": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"gen-errors": "edb gen-errors-json --client | node tools/gen_errors.js",
"compileForDeno": "deno run --unstable --allow-env --allow-read --allow-write tools/compileForDeno.ts",
"dev": "yarn tsc --project tsconfig.build.json --incremental && yarn copy:syntax && cd qb && yarn generate",
"dev:watch": "nodemon -e ts -w ./src -x 'yarn dev'"
}
}