-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 948 Bytes
/
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
{
"name": "htfs",
"version": "0.0.3",
"license": "MIT",
"description": "Expose filesystem via HTTP and access it from the other side!",
"repository": "jesless/htfs",
"contributes": [
"Pooya Parsa <[email protected]>"
],
"scripts": {
"lint": "eslint lib",
"test": "npm run lint && npm run jest",
"jest": "jest",
"release": "standard-version && git push --follow-tags && npm publish",
"prepare": "npm run test"
},
"files": [
"lib"
],
"devDependencies": {
"codecov": "^3.1.0",
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"express": "^4.16.4",
"jest": "^24.0.0",
"memory-fs": "^0.4.1",
"standard-version": "^4.4.0"
},
"dependencies": {
"node-fetch": "^2.3.0"
}
}