forked from robtweed/ewd-document-store
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.82 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.82 KB
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
{
"name" : "ewd-document-store",
"version" : "2.1.29",
"config" : {
"date" : "7 June 2022"
},
"description" : "Persistent JavaScript Objects and Document Database using Global Storage",
"author" : "Rob Tweed, M/Gateway Developments Ltd",
"license" : "Apache-2.0",
"homepage" : "https://github.com/wdbacker/ewd-document-store#readme",
"main" : "index.js",
"bugs" : {
"url" : "https://github.com/wdbacker/ewd-document-store/issues"
},
"engines" : {
"node" : ">= 6.0",
"npm" : ">= 2.15"
},
"repository" : {
"type" : "git",
"url" : "git+https://github.com/wdbacker/ewd-document-store.git"
},
"scripts" : {
"lint" : "jshint examples spec",
"test" : "npm run test:unit && npm run test:integration",
"test:unit" : "jasmine --config=spec/support/unit.json",
"test:integration" : "jasmine --config=spec/support/integration.json",
"coverage:unit" : "nyc --reporter=html --reporter=text jasmine --config=spec/support/unit.json",
"coverage:integration" : "nyc --reporter=html --reporter=text jasmine --config=spec/support/integration.json",
"coveralls" : "nyc report --reporter=text-lcov | coveralls",
"validate" : "npm ls"
},
"pre-commit" : [ "lint", "test:unit" ],
"nyc" : {
"all" : true,
"include" : [ "lib/**/*.js" ],
"exclude" : [ "spec/**/*.js" ]
},
"dependencies" : {
"sax" : "",
"xpath" : "",
"node-sql-parser" : ""
},
"devDependencies" : {
"coveralls" : "^2.13.1",
"dotenv" : "^4.0.0",
"jasmine" : "^2.8.0",
"jasmine-spec-reporter" : "^4.1.1",
"jshint" : "^2.9.5",
"nyc" : "^11.1.0",
"pre-commit" : "^1.2.2",
"rewire" : "^2.5.2"
}
}