forked from danethurber/env-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.45 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
{
"name": "@bolajiolajide/env-utils",
"version": "0.2.0",
"description": "Smart Environment Utilities for faster operations",
"main": "lib/index.js",
"module": "lib/index.es.js",
"types": "lib/index.d.ts",
"umd": "lib/index.umd.js",
"scripts": {
"cleanup": "rm -rf lib",
"build": "yarn build:declaration && yarn build:rollup",
"build:declaration": "tsc",
"build:rollup": "rollup -c rollup.config.ts",
"build:markup": "marked -i README.md -o docs/index.html",
"test": "jest"
},
"repository": "git@github.com:BolajiOlajide/env-utils.git",
"homepage": "https://github.com/BolajiOlajide/env-utils",
"keywords": [
"env",
"process"
],
"maintainers": [
{
"email": "25608335+BolajiOlajide@users.noreply.github.com",
"name": "Bolaji",
"url": "https://bolaji.de"
}
],
"author": "Dane Thurber <dane.thurber@gmail.com> (http://github.com/danethurber)",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "7.16.5",
"@babel/preset-typescript": "7.16.5",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-node-resolve": "13.1.1",
"@types/jest": "27.0.3",
"@types/node": "17.0.4",
"babel": "5.4.7",
"jest": "27.4.5",
"rollup": "2.62.0",
"rollup-plugin-terser": "7.0.2",
"ts-jest": "27.1.2",
"ts-node": "10.4.0",
"typescript": "4.5.4"
},
"files": [
"lib",
"package.json",
"yarn.lock",
"README.md",
"CHANGELOG.md"
]
}