-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "jfauna",
"version": "1.0.1",
"description": "jQuery-like chainable methods to make FaunaDB more accessible",
"main": "src/jfauna.js",
"scripts": {
"db:start": "docker run --name faunadb -p 8443:8443 -p 8084:8084 fauna/faunadb",
"db:end": "docker container stop faunadb && docker container rm faunadb",
"lint": "eslint .",
"test": "nyc mocha",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ddamato/jfauna.git"
},
"keywords": [
"fauna",
"faunadb",
"fauna-database",
"database-management"
],
"author": "Donnie D'Amato <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ddamato/jfauna/issues"
},
"homepage": "https://github.com/ddamato/jfauna#readme",
"devDependencies": {
"auto-changelog": "^2.3.0",
"chai": "^4.3.4",
"eslint": "^7.30.0",
"mocha": "^9.0.2",
"nyc": "^15.1.0"
},
"dependencies": {
"faunadb": "^4.3.0"
}
}