forked from fastify/fastify-env
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "fastify-env",
"version": "1.0.1",
"description": "Fastify plugin to check environment variables",
"main": "index.js",
"scripts": {
"lint": "standard | snazzy",
"lint:fix": "standard --fix",
"unit": "cross-env VALUE_FROM_ENV=pippo tap test",
"test": "npm run lint && npm run unit",
"coverage": "cross-env VALUE_FROM_ENV=pippo tap --cov --coverage-report=html test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-env.git"
},
"keywords": [
"fastify"
],
"author": "Tommaso Allevi - @allevo",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-env/issues"
},
"homepage": "https://github.com/fastify/fastify-env#readme",
"dependencies": {
"env-schema": "^1.0.0",
"fastify-plugin": "^1.0.1"
},
"devDependencies": {
"cross-env": "^5.2.0",
"fastify": "^2.0.0",
"pre-commit": "^1.2.2",
"snazzy": "^8.0.0",
"standard": "^14.0.2",
"tap": "^12.6.6"
},
"greenkeeper": {
"ignore": [
"tap"
]
}
}