-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.5 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
56
57
58
59
60
61
62
{
"name": "renovate-encrypt",
"description": "CLI tool to encrypt configuration values with Renovate public key",
"version": "0.1.1",
"bin": "dist/renovate-encrypt.js",
"scripts": {
"build": "rimraf dist && mkdirp dist && babel lib --out-dir dist",
"np": "np",
"prepublishOnly": "npm run build",
"start": "babel-node lib/renovate-encrypt",
"test": "eslint lib/**/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/singapore/renovate-encrypt.git"
},
"keywords": [
"renovate",
"encrypt",
"token"
],
"author": "Rhys Arkins <rhys@arkins.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/singapore/renovate-encrypt/issues"
},
"homepage": "https://github.com/singapore/renovate-encrypt",
"engines": {
"node": ">=6.11.1",
"npm": ">=5"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-plugin-transform-async-to-generator": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"eslint": "4.5.0",
"eslint-config-airbnb-base": "11.3.2",
"eslint-config-prettier": "2.3.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-prettier": "2.2.0",
"eslint-plugin-promise": "3.5.0",
"np": "2.16.0",
"prettier": "1.5.3"
},
"babel": {
"plugins": [
"transform-async-to-generator",
"transform-object-rest-spread"
]
},
"renovate": {
"extends": [
":app"
],
"labels": [
"ready"
],
"assignees": [
"rarkins"
]
}
}