UNPKG

2.14 kBJSONView Raw
1{
2 "name": "kuzzle-sdk",
3 "version": "6.2.7",
4 "description": "Official Javascript SDK for Kuzzle",
5 "author": "The Kuzzle Team <support@kuzzle.io>",
6 "repository": {
7 "type": "git",
8 "url": "https://github.com/kuzzleio/sdk-javascript.git"
9 },
10 "issues": "https://github.com/kuzzleio/sdk-javascript/issues",
11 "keywords": [
12 "kuzzle",
13 "sdk",
14 "baas",
15 "backend",
16 "realtime",
17 "advanced search",
18 "bulk"
19 ],
20 "scripts": {
21 "postinstall": "npm run build",
22 "prepublish": "npm run build",
23 "test": "npm run --silent lint && npm run unit-testing && npm run functional-testing",
24 "unit-testing": "nyc --reporter=text-summary --reporter=lcov mocha",
25 "doc": "docker-compose -f doc/docker-compose.yml up",
26 "doc-testing": "bash test-docs.sh",
27 "functional-testing": "cucumber-js --exit --fail-fast",
28 "lint": "eslint --max-warnings=0 ./src ./test ./features",
29 "build": "node build.js",
30 "doc-prepare": "cd doc && bash doc.sh prepare",
31 "doc-dev": "cd doc && bash doc.sh dev",
32 "doc-build": "cd doc && bash doc.sh build",
33 "doc-upload": "cd doc && bash doc.sh upload",
34 "doc-cloudfront": "cd doc && bash doc.sh cloudfront",
35 "doc-deploy": "npm run doc-upload && npm run doc-cloudfront",
36 "doc-netlify": "npm run doc-prepare && cd doc && bash doc.sh build-netlify"
37 },
38 "browser": "dist/kuzzle.js",
39 "main": "index.js",
40 "license": "Apache-2.0",
41 "dependencies": {
42 "@babel/core": "^7.6.0",
43 "@babel/preset-env": "^7.6.0",
44 "audit": "0.0.6",
45 "babel-loader": "^8.0.6",
46 "min-req-promise": "^1.0.1",
47 "ora": "^3.4.0",
48 "webpack": "^4.39.3",
49 "ws": "^6.2.1"
50 },
51 "devDependencies": {
52 "codecov": "^3.5.0",
53 "cucumber": "^5.1.0",
54 "eslint": "^5.16.0",
55 "eslint-friendly-formatter": "^4.0.1",
56 "eslint-loader": "^2.2.1",
57 "lolex": "^5.1.1",
58 "mocha": "6.2.0",
59 "mock-require": "^3.0.3",
60 "nyc": "^14.1.1",
61 "proxyquire": "^2.1.3",
62 "retry": "^0.12.0",
63 "rewire": "^4.0.1",
64 "should": "13.2.3",
65 "should-sinon": "0.0.6",
66 "sinon": "^7.4.2"
67 },
68 "engines": {
69 "node": ">= 6.9.1"
70 }
71}