-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 945 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 945 Bytes
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
{
"name": "custom-hash",
"version": "0.9.0",
"description": "Custom hash generator (based on MD5 algorithm)",
"main": "lib/custom-hash.js",
"scripts": {
"lint": "jshint ./ --exclude ./node_modules",
"code-style": "jscs ./",
"test": "mocha tests --require should --reporter spec --colors"
},
"repository": {
"type": "git",
"url": "https://github.com/Belema/custom-hash.git"
},
"keywords": [
"hash",
"custom",
"md5",
"short",
"short-hash",
"custom-md5",
"short-md5"
],
"author": "Belema Gancarz",
"license": "MIT",
"bugs": {
"url": "https://github.com/Belema/custom-hash/issues"
},
"homepage": "https://github.com/Belema/custom-hash#readme",
"devDependencies": {
"jscs": "^2.7.0",
"jshint": "^2.8.0",
"mocha": "^2.3.4",
"should": "^8.0.2"
}
}