-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 loc) · 1.01 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
{
"name": "figaro",
"version": "0.1.10",
"description": "simple configuration of sensitive information on open source projects",
"main": "index.js",
"homepage": "https://github.com/cmanzana/node-figaro",
"bin": {
"figaro": "./bin/figaro.js"
},
"scripts": {
"test": "mocha test/*.js test/integration/*.js",
"unit-test": "mocha",
"integration-test": "mocha test/integration/travis-integration-test.js",
"coverage": "istanbul cover node_modules/.bin/_mocha test/**"
},
"dependencies": {
"npmlog": "2.x.x",
"request": "2.x.x",
"ursa" : "^0.9.x",
"nopt": "3.x.x"
},
"engines": {
"node": ">=0.10.x"
},
"repository": {
"type": "git",
"url": "[email protected]:cmanzana/node-figaro.git"
},
"keywords": [
"npm",
"figaro",
"open source",
"password",
"secret",
"sensitive",
"CI"
],
"devDependencies": {
"mocha": "1.x.x",
"istanbul": "0.2.x"
},
"author": "Carlos Manzanares <[email protected]>",
"license": "MIT"
}