forked from robtweed/ewd-document-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.56 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
{
"name": "ewd-document-store",
"version": "1.19.1",
"config": {
"date": "5 October 2017"
},
"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/robtweed/ewd-document-store#readme",
"main": "index.js",
"bugs": {
"url": "https://github.com/robtweed/ewd-document-store/issues"
},
"engines": {
"node": ">= 0.10",
"npm": ">= 2.15"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robtweed/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"
]
},
"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"
}
}