forked from flosse/json-file-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.25 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
{
"name": "@bottender/jfs",
"version": "0.4.0",
"main": "./Store",
"types": "./index.d.ts",
"description": "A simple JSON file store",
"author": "Markus Kohlhase <[email protected]>",
"homepage": "http://github.com/bottenderjs/json-file-store",
"bugs": "http://github.com/bottenderjs/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/bottenderjs/json-file-store.git"
},
"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"
}
}