-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.48 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.48 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "kvplus-files",
"version": "0.0.4",
"engines": {
"node": "^6.0"
},
"description": "Simple K/V store backend interface to RDF (Turtle) files, uses KVPlus API",
"main": "./lib/store",
"files": [
"lib"
],
"scripts": {
"build": "babel src -d lib",
"prepublish": "npm test && npm run build",
"standard": "standard",
"mocha": "nyc mocha ./test/**/*.js",
"test": "npm run standard && npm run mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/solid/kvplus-files"
},
"keywords": [
"store",
"persistence",
"kv",
"solid",
"decentralized",
"key",
"rdf",
"ldp",
"linked",
"data",
"store",
"value"
],
"author": "Dmitri Zagidulin <dzagidulin@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/solid/kvplus-files/issues"
},
"homepage": "https://github.com/solid/kvplus-files",
"dependencies": {
"fs-extra": "^10.0.1",
"fs-extra-p": "^8.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.3.6",
"dirty-chai": "^2.0.1",
"mocha": "^9.2.1",
"nyc": "^15.1.0",
"sinon": "^13.0.1",
"sinon-chai": "^3.7.0",
"standard": "^16.0.4"
},
"nyc": {
"reporter": [
"html",
"text-summary"
],
"cache": true
},
"standard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"it"
]
}
}