-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "sensenv",
"version": "1.1.2",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"description": "Tool to generate env object with intellisense",
"license": "MIT",
"homepage": "https://github.com/DanielEscorciaOrtiz/sensenv#readme",
"scripts": {
"prepublishOnly": "yarn build",
"build": "yarn b:clean && yarn b:compile && yarn b:bundle",
"b:clean": "rm -rf ./lib && rm -rf ./private/lib",
"b:compile": "tsc -p ./config",
"b:bundle": "rollup -c ./config/rollup.config.js && node ./config/dts.config.js"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^16.7.13",
"dts-minify": "^0.3.0",
"rollup": "^2.60.0",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.4.2"
},
"author": {
"name": "Daniel Escorcia Ortiz",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DanielEscorciaOrtiz/sensenv.git"
},
"keywords": [
"env",
"environment",
"process",
"intellisense"
],
"files": [
"lib/**/*"
]
}