forked from fauna/faunadb-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.66 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
{
"name": "faunadb",
"version": "2.14.2",
"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/"
],
"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=false ./test"
},
"types": "index.d.ts",
"dependencies": {
"base64-js": "^1.2.0",
"btoa-lite": "^1.0.0",
"cross-fetch": "^3.0.4",
"dotenv": "^8.2.0",
"fn-annotate": "^1.1.3",
"object-assign": "^4.1.0",
"url-parse": "^1.4.7",
"util-deprecate": "^1.0.2"
},
"devDependencies": {
"browserify": "^16.2.2",
"eslint": "^5.3.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": ">=1",
"ink-docstrap": "^1.2.1",
"jest": "^24.9.0",
"jsdoc": "^3.6.3",
"lint-staged": ">=8",
"prettier": "1.18.2",
"terser": "^4.3.9",
"typescript": "^3.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
}
}