forked from humanwhocodes/env
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 820 Bytes
/
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
{
"name": "@humanwhocodes/env",
"version": "0.3.1",
"description": "A utility to verify that environment variables exist.",
"main": "dist/env.cjs.js",
"module": "dist/env.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"prepare": "npm run build",
"lint": "eslint src/ tests/",
"test": "npm run lint && mocha -r esm tests/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/humanwhocodes/env.git"
},
"keywords": [
"nodejs",
"deno",
"environment",
"environment variables"
],
"author": "Nicholas C. Zaks",
"license": "BSD-3-Clause",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"esm": "^3.2.25",
"mocha": "^5.2.0",
"rollup": "^1.20.3",
"rollup-plugin-babel-minify": "^9.0.0"
}
}