-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.04 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
45
46
47
{
"name": "mimetypeicon",
"version": "1.2.4",
"description": "Site that provides mimetype icons for hotlinking",
"private": false,
"main": "server.js",
"repository": {
"type": "git",
"url": "https://github.com/wgenial/mimetypeicons-nodejs"
},
"scripts": {
"start:dev": "nodemon server.js",
"start": "node server.js",
"test:dev": "nodemon --timeout 10000 --watch . --exec 'mocha ./test/index.js || true'",
"test": "mocha --timeout 10000 --exit"
},
"keywords": [
"mimetypes",
"mimetype",
"mime-type",
"icons",
"icon",
"hotlink"
],
"author": {
"name": "WGenial",
"email": "[email protected]",
"url": "http://wgenial.com"
},
"license": "MIT",
"dependencies": {
"express": "4.16.2",
"lodash.indexof": "^4.0.3",
"mime-types": "^2.1.21",
"request": "^2.88.0"
},
"engines": {
"node": ">= 0.6.0",
"npm": ">= 1.0.0"
},
"devDependencies": {
"mocha": "^4.1.0",
"nodemon": "^1.19.1",
"should": "^13.2.3",
"supertest": "^3.4.2"
}
}