-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 854 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 854 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
{
"name": "wpnp-crypto",
"version": "1.0.4",
"description": "An encryption library for the WinMX Peer Networking Protocol.",
"main": "lib/wpnp-crypto.js",
"homepage": "https://github.com/JoshGlazebrook/wpnp-crypto/",
"repository": {
"type": "git",
"url": "https://github.com/JoshGlazebrook/wpnp-crypto.git"
},
"keywords": [
"winmx",
"encryption",
"protocol",
"winmx encryption",
"wpnp"
],
"scripts": {
"test": "mocha test/crypto-test.js",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha recursive test"
},
"engines": {
"node": ">= 0.10.0",
"npm": ">= 1.3.5"
},
"typings": "typings/index",
"author": "Josh Glazebrook",
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {},
"devDependencies": {
"istanbul": "^0.4.3",
"mocha": "^2.4.5"
}
}