-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 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
{
"name": "@garygrossgarten/wach",
"version": "1.2.1",
"description": "simple cli tool to prevent your mac from going to sleep when closing the lid. 👀",
"main": "dist/index.js",
"repository": {
"url": "https://github.com/garygrossgarten/wach",
"type": "git"
},
"scripts": {
"build": "node_modules/.bin/tsc -p .",
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"test": "npm i -g && wach"
},
"bin": {
"wach": "dist/index.js"
},
"preferGlobal": false,
"keywords": [
"typescript",
"cli",
"node",
"terminal"
],
"author": "garygrossgarten",
"license": "MIT",
"devDependencies": {
"axios": "^0.18.0",
"@types/node": "^10.12.18",
"nodemon": "^1.18.9",
"ts-node": "^7.0.1",
"typescript": "^3.2.2",
"typescript-ioc": "^1.2.4"
},
"dependencies": {
"@fivethree/billy-core": "0.9.2",
"@fivethree/billy-plugin-core": "0.9.2"
}
}