-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 994 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
{
"name": "bash-env-parser",
"version": "0.1.0",
"description": "Parse/replace bash style variable substitutions with support for default values.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "rollup --config --environment BUILD:development",
"build:test": "rollup --config --environment BUILD:test",
"build:production": "rollup --config --environment BUILD:production",
"watch": "rollup --config --watch"
},
"author": "Franklin Ross",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "^10.17.28",
"@types/pegjs": "^0.10.2",
"jest": "^26.4.0",
"pegjs": "^0.10.0",
"prettier": "^2.0.5",
"rollup": "^2.26.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-pegjs": "^2.1.3",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.27.2",
"terser": "^5.1.0",
"tslib": "^2.0.1",
"typescript": "^3.9.7"
}
}