-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 728 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 728 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
{
"name": "simple-node-encryption",
"version": "1.0.0",
"description": "This package provides a simple encryption service.",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JaakkoL/simple-node-encryption.git"
},
"keywords": [
"encryption"
],
"author": "Jaakko Laurila <https://github.com/JaakkoL/>",
"license": "ISC",
"main": "./simple-node-encryption.js",
"bugs": {
"url": "https://github.com/JaakkoL/simple-node-encryption/issues"
},
"homepage": "https://github.com/JaakkoL/simple-node-encryption#readme",
"devDependencies": {
"chai": "3.4.1",
"mocha": "2.3.4"
}
}