UNPKG

1.74 kBJSONView Raw
1{
2 "name": "ewd-document-store",
3 "version": "2.1.28",
4 "config": {
5 "date": "15 December 2020"
6 },
7 "description": "Persistent JavaScript Objects and Document Database using Global Storage",
8 "author": "Rob Tweed, M/Gateway Developments Ltd",
9 "license": "Apache-2.0",
10 "homepage": "https://github.com/robtweed/ewd-document-store#readme",
11 "main": "index.js",
12 "bugs": {
13 "url": "https://github.com/robtweed/ewd-document-store/issues"
14 },
15 "engines": {
16 "node": ">= 6.0",
17 "npm": ">= 2.15"
18 },
19 "repository": {
20 "type": "git",
21 "url": "git+https://github.com/robtweed/ewd-document-store.git"
22 },
23 "scripts": {
24 "lint": "jshint examples spec",
25 "test": "npm run test:unit && npm run test:integration",
26 "test:unit": "jasmine --config=spec/support/unit.json",
27 "test:integration": "jasmine --config=spec/support/integration.json",
28 "coverage:unit": "nyc --reporter=html --reporter=text jasmine --config=spec/support/unit.json",
29 "coverage:integration": "nyc --reporter=html --reporter=text jasmine --config=spec/support/integration.json",
30 "coveralls": "nyc report --reporter=text-lcov | coveralls",
31 "validate": "npm ls"
32 },
33 "pre-commit": [
34 "lint",
35 "test:unit"
36 ],
37 "nyc": {
38 "all": true,
39 "include": [
40 "lib/**/*.js"
41 ],
42 "exclude": [
43 "spec/**/*.js"
44 ]
45 },
46 "dependencies": {
47 "sax": "",
48 "xpath": "",
49 "node-sql-parser": ""
50 },
51 "devDependencies": {
52 "coveralls": "^2.13.1",
53 "dotenv": "^4.0.0",
54 "jasmine": "^2.8.0",
55 "jasmine-spec-reporter": "^4.1.1",
56 "jshint": "^2.9.5",
57 "nyc": "^11.1.0",
58 "pre-commit": "^1.2.2",
59 "rewire": "^2.5.2"
60 }
61}