stotem/package.json

23 lines
446 B
JSON
Raw Normal View History

2022-10-08 00:29:45 +00:00
{
"name": "totem",
"version": "0.0.1",
"description": "Hashicorp Sentinel repro tool",
"main": "dist/main.js",
"author": "Sean Meininger",
"license": "GPL3",
"devDependencies": {
"@types/node": "^18.8.2",
"@vscode/ripgrep": "^1.14.2",
"ts-node": "^10.9.1",
2022-10-10 04:30:21 +00:00
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
2022-10-08 00:29:45 +00:00
},
"scripts": {
"start": "ts-node ./src/main.ts",
2022-10-10 22:44:36 +00:00
"build": "tsc -p ."
2022-10-10 22:16:53 +00:00
},
"bin": {
2022-10-10 22:44:36 +00:00
"stotem": "./dist/main.js"
2022-10-08 00:29:45 +00:00
}
}