forked from pwmckenna/node-travis-encrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.33 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "donejs-travis-encrypt",
"version": "3.0.0",
"description": "Encrypts data for use in your travis-ci yml configuration file",
"repository": {
"type": "git",
"url": "git://github.com/pwmckenna/node-travis-encrypt.git"
},
"scripts": {
"test": "istanbul cover tape tests/**/*.test.js",
"posttest": "semistandard"
},
"keywords": [
".travis.yml",
"encryption",
"travis",
"travis-ci",
"travis-pro"
],
"author": "Patrick Williams <pwmckenna@gmail.com>",
"contributors": [
{
"name": "Espen Hovlandsdal",
"email": "espen@hovlandsdal.com"
}
],
"license": "BSD-3-Clause",
"readmeFilename": "README.md",
"main": "lib/travis-encrypt",
"bin": {
"travis-encrypt": "./bin/travis-encrypt-cli.js"
},
"homepage": "https://github.com/pwmckenna/node-travis-encrypt",
"bugs": "https://github.com/pwmckenna/node-travis-encrypt/issues",
"dependencies": {
"colors": "^1.1.2",
"deep-property": "^1.1.0",
"lodash.merge": "^3.3.2",
"read-yaml": "^1.0.0",
"travis-ci": "^2.2.0",
"donejs-ursa": "1.0.0",
"write-yaml": "^0.2.2",
"yargs": "^3.32.0"
},
"devDependencies": {
"concat-stream": "^1.5.1",
"istanbul": "^0.4.0",
"proxyquire": "^1.7.3",
"semistandard": "*",
"tape": "^4.2.2"
},
"engines": {
"node": ">=8.0.0"
}
}