-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 709 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 709 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
{
"name": "crypto-config",
"version": "0.2.0",
"description": "Small Node config extension which supports encryption",
"author": {
"name": "Christian Ribeaud",
"email": "christian.ribeaud@canoo.com"
},
"main": "./lib/config.js",
"repository": {
"type": "git",
"url": "https://github.com/ribeaud/node-crypto-config.git"
},
"devDependencies": {
"should": "^11.2.0",
"mocha": "^3.2.0"
},
"directories": {
"lib": "./lib"
},
"engines": {
"node": ">=4.2.6"
},
"license": "MIT",
"dependencies": {
"config": "^1.25.1",
"lodash": "^4.17.4"
},
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec -u bdd --require should"
}
}