-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 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
{
"name": "shellac",
"version": "0.8.0",
"description": "Protect and beautify your shell scripting",
"keywords": [
"shell"
],
"homepage": "https://github.com/geelen/shellac#readme",
"bugs": {
"url": "https://github.com/geelen/shellac/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geelen/shellac.git"
},
"license": "MIT",
"author": "Glen Maddern",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "pnpm build:parser && pnpm build:ts",
"build:parser": "babel src/grammar.js -d dist",
"build:ts": "tsup src/index.ts --format esm,cjs --dts",
"dev": "run-p -l 'build:parser --watch' 'build:ts --watch'",
"prepack": "pnpm build",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"dependencies": {
"reghex": "^1.0.2"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@types/fs-extra": "^9.0.4",
"@types/jest": "^26.0.15",
"fs-extra": "^9.0.1",
"jest": "^27.4.7",
"just-pick": "^4.2.0",
"npm-run-all": "^4.1.5",
"tmp-promise": "^3.0.2",
"tree-node-cli": "^1.6.0",
"ts-jest": "^27.1.3",
"tsup": "^6.1.2",
"typescript": "^4.1.2"
}
}