This repository was archived by the owner on Aug 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.35 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.35 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
{
"name": "jfs",
"version": "0.3.0",
"main": "./Store",
"description": "A simple JSON file store",
"author": "Markus Kohlhase <mail@markus-kohlhase.de>",
"homepage": "http://github.com/flosse/json-file-store",
"bugs": "http://github.com/flosse/json-file-store/issues",
"license": "MIT",
"engines": {
"node": ">=12"
},
"dependencies": {
"async": "^3.2.1",
"clone": "^2.1.2",
"mkdirp": "^1.0.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"istanbul": "^0.4.5",
"mocha": "^3.1.2"
},
"repository": {
"type": "git",
"url": "git://github.com/flosse/json-file-store.git"
},
"maintainers": [
{
"name": "Markus Kohlhase",
"email": "mail@markus-kohlhase.de",
"web": "http://github.com/flosse/"
}
],
"scripts": {
"lint": "echo \"WARN: no linting process specified\"",
"build": "babel Store.es6.js -o Store.js && babel Store.spec.es6.js -o Store.spec.js",
"prepublish": "npm run build",
"test": "npm run lint && npm run build && ./node_modules/.bin/mocha --reporter spec *.spec.js",
"coveralls": "istanbul cover ./node_modules/.bin/_mocha --report lcovonly && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
}
}