-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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": "fileside",
"version": "0.1.2",
"scripts": {
"start": "nodemon ./bin/www",
"test": "run-p -n test:lint test:jest",
"test:jest": "jest",
"test:lint": "eslint .",
"test:lint:fix": "eslint . --fix"
},
"dependencies": {
"npm-run-all": "^4.1.2"
},
"description": "Application to retrieve file size, and produce a file hash.",
"main": "./src/fileside.js",
"devDependencies": {
"body-parser": "~1.18.2",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"eslint": "^4.13.1",
"eslint-plugin-prettier": "^2.3.1",
"express": "~4.16.3",
"jest": "^22.4.3",
"morgan": "~1.9.0",
"prettier": "^1.12.1",
"pug": "^2.0.3"
},
"tonicExampleFilename": "./test/example.js",
"repository": {
"type": "git",
"url": "git+https://github.com/marcobeltempo/fileside.git"
},
"keywords": [
"osd600",
"node",
"file extractor"
],
"author": "Marco Beltempo",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/marcobeltempo/fileside/issues"
},
"homepage": "https://github.com/marcobeltempo/fileside#readme"
}