-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
66 lines (66 loc) · 2.41 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
{
"name": "rqlite-js",
"version": "2.5.7",
"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.26.4",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/register": "^7.25.9",
"@babel/runtime": "^7.26.0",
"babel-plugin-add-module-exports": "^1.0.4",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-mocha": "^10.5.0",
"mocha": "^10.8.2",
"nock": "^13.5.6",
"retry-as-promised": "^7.0.4",
"standard-version": "^9.5.0"
},
"dependencies": {
"axios": "^1.7.9",
"install": "^0.13.0",
"qs": "^6.13.1"
}
}