-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "@buttercup/secure-file-host",
"version": "0.3.0",
"description": "Secure filesystem host toolkit for Browser-Desktop datasource connection",
"main": "source/index.js",
"scripts": {
"docs": "jsdoc2md source/**/*.js > API.md",
"start": "node test/standalone.js",
"test": "nyc mocha -r test/index.js --recursive test/specs/*.spec.js --timeout 5000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/buttercup/secure-file-host.git"
},
"keywords": [
"filesystem",
"buttercup",
"host",
"datasource"
],
"author": "Perry Mitchell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/buttercup/secure-file-host/issues"
},
"homepage": "https://github.com/buttercup/secure-file-host#readme",
"dependencies": {
"body-parser": "^1.19.0",
"eventemitter3": "^4.0.7",
"express": "^4.17.1",
"home-dir": "^1.0.0",
"iocane": "^4.2.0",
"pify": "^5.0.0"
},
"devDependencies": {
"chai": "^4.3.3",
"chalk": "^4.1.0",
"jsdoc-to-markdown": "^7.0.0",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"supertest": "^6.1.3"
}
}