-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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": "reversemd5",
"version": "0.1.1",
"description": "A reverse-md5 lookup database that grows by user input",
"keywords": [
"md5",
"hash"
],
"scripts": {
"lint": "eslint .",
"test": "npm run lint"
},
"homepage": "https://github.com/danyshaanan/reversemd5",
"author": {
"name": "Dany Shaanan",
"email": "[email protected]",
"url": "http://danyshaanan.com/"
},
"contributors": [],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/danyshaanan/reversemd5/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "git://github.com/danyshaanan/reversemd5.git"
},
"bugs": {
"url": "https://github.com/danyshaanan/reversemd5",
"email": "[email protected]"
},
"main": "./reversemd5.js",
"dependencies": {
"express": "4.16.4",
"mysql": "2.16.0"
},
"devDependencies": {
"eslint": "5.15.2",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-standard": "4.0.0"
}
}