-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.09 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.09 KB
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": "cenv",
"description": "Get your environment variables directly from the cloud",
"version": "1.0.0-alpha",
"main": "src/index.js",
"repository": "git@github.com:rodrigogs/cenv.git",
"author": {
"name": "Rodrigo Gomes da Silva",
"email": "rodrigo.smscom@gmail.com",
"url": "https://github.com/rodrigogs"
},
"license": "BSD-3-Clause",
"scripts": {
"eslint": "eslint . --ext .js",
"test": "mocha --ui tdd test/**/*.spec.js",
"coverage": "nyc --reporter=html --reporter=lcov npm test"
},
"bin": {
"cenv": "bin/cenv"
},
"dependencies": {
"axios": "^0.16.2",
"commander": "^2.11.0",
"debug": "^3.0.0",
"execa": "^0.8.0",
"ini": "^1.3.4",
"yamljs": "^0.3.0"
},
"devDependencies": {
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"codeclimate-test-reporter": "^0.5.0",
"eslint": "^4.4.1",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"mocha": "^3.5.0",
"mock-fs": "^4.4.1",
"nock": "^9.0.14",
"nyc": "^11.1.0"
},
"engines": {
"node": ">=7.6.0"
}
}