-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
64 lines (64 loc) · 2.35 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
{
"name": "rqlite-js",
"version": "2.5.6",
"description": "A client library for RQLite written in Javascript that works in NodeJS or the browser.",
"main": "lib/index.js",
"scripts": {
"build": "babel es6 --out-dir lib --source-maps --ignore es6/**/*.unit.js,es6/**/*.integration.js,es6/test",
"build-all": "babel es6 --out-dir lib --source-maps",
"build-clean": "rm -rf lib",
"build-release": "npm run build && npm run test-build",
"docker-build": "docker-compose -p rqlitejs build",
"docker-down": "docker-compose -p rqlitejs down",
"docker-logs": "docker-compose -p rqlitejs logs",
"docker-run-test": "docker-compose -p rqlitejs run test",
"docker-stop": "docker-compose -p rqlitejs stop",
"lint": "eslint es6/**/*.js",
"release": "npm run lint && npm run build-all && npm run test-build && standard-version",
"test": "mocha --require @babel/register es6/test/unit/index.unit.js es6/**/*.unit.js",
"test-integrations": "mocha --require @babel/register --timeout 10000 lib/**/*.integration.js",
"test-build": "mocha lib/test/unit/index.unit.js lib/**/*.unit.js",
"test-build-integrations": "mocha --timeout 30000 lib/**/*.integration.js",
"prepublishOnly": "npm run lint && npm run build && npm run test-build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rqlite/rqlite-js.git"
},
"keywords": [
"rqlite",
"client",
"nodejs"
],
"author": "Justin Morant",
"license": "ISC",
"bugs": {
"url": "https://github.com/rqlite/rqlite-js/issues"
},
"homepage": "https://github.com/rqlite/rqlite-js#readme",
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/eslint-parser": "^7.22.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/register": "^7.22.5",
"@babel/runtime": "^7.22.5",
"babel-plugin-add-module-exports": "^1.0.4",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"eslint": "^8.43.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^10.1.0",
"mocha": "^10.2.0",
"nock": "^13.3.1",
"standard-version": "^9.3.0"
},
"dependencies": {
"axios": "^1.4.0",
"qs": "^6.11.2"
}
}