forked from fauna/faunadb-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.32 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
{
"name": "faunadb",
"version": "4.8.0",
"apiVersion": "4",
"description": "FaunaDB Javascript driver for Node.JS and Browsers",
"homepage": "https://fauna.com",
"repository": "fauna/faunadb-js",
"license": "MPL-2.0",
"keywords": [
"database",
"fauna",
"official",
"driver"
],
"bugs": {
"url": "https://github.com/fauna/faunadb-js/issues"
},
"files": [
"index.d.ts",
"src/",
"dist/",
"tools/printReleaseNotes.js"
],
"main": "index.js",
"scripts": {
"doc": "jsdoc -c ./jsdoc.json",
"browserify": "browserify index.js --standalone faunadb -o dist/faunadb.js",
"browserify-min": "browserify index.js --standalone faunadb | terser -c -m --keep-fnames --keep-classnames -o dist/faunadb-min.js",
"prettify": "prettier --write \"{src,test}/**/*.{js,ts}\"",
"test": "jest --env=node --verbose=true --forceExit --runInBand ./test",
"posttest": "node ./test/afterComplete",
"semantic-release": "semantic-release",
"wp": "webpack",
"postinstall": "node ./tools/printReleaseNotes",
"postupdate": "node ./tools/printReleaseNotes",
"load-test": "node ./tools/loadTest"
},
"types": "index.d.ts",
"dependencies": {
"base64-js": "^1.2.0",
"boxen": "^5.0.1",
"btoa-lite": "^1.0.0",
"chalk": "^4.1.1",
"cross-fetch": "^3.1.5",
"dotenv": "^8.2.0",
"fn-annotate": "^1.1.3",
"node-abort-controller": "^3.0.1",
"object-assign": "^4.1.0",
"util-deprecate": "^1.0.2"
},
"devDependencies": {
"ansi-regex": ">=5.0.1",
"browserify": "^16.2.2",
"eslint": "^5.3.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^7.0.4",
"jest": "^27.4.7",
"jsdoc": "^3.6.10",
"json-schema": ">=0.4.0",
"lint-staged": ">=8",
"marked": ">=4.0.10",
"prettier": "1.18.2",
"semantic-release": "^19.0.3",
"terser": "^4.3.9",
"webpack": "^5.23.0",
"webpack-cli": "^4.5.0",
"yargs": "^16.2.0"
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
},
"release": {
"branches": [
"main"
]
},
"browser": {
"http2": false,
"http": false,
"https": false,
"os": false,
"util": false,
"boxen": false,
"chalk": false
}
}