-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 968 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
33
34
35
36
37
38
39
40
41
42
{
"name": "relo",
"version": "1.0.0",
"description": "Auto-reload or rerun programs on file-system events",
"author": "Santiago Lezica <[email protected]>",
"license": "MIT",
"main": "lib/relo",
"preferGlobal": true,
"scripts": {
"build": "babel src --out-dir dist",
"watch": "babel src --out-dir dist --watch",
"test": "mocha --require @babel/register test/"
},
"files": [
"dist",
"bin"
],
"bin": {
"relo": "bin/relo"
},
"repository": {
"type": "git",
"url": "[email protected]:slezica/relo.git"
},
"dependencies": {
"chokidar": "^3.6.0",
"lodash.debounce": "^4.0.6",
"yargs": "^1.3.1"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/register": "^7.24.6",
"chai": "^4.4.1",
"mocha": "^10.4.0",
"rimraf": "^2.5.4",
"sinon": "^18.0.0",
"sinon-chai": "^3.7.0",
"touch": "^1.0.0"
}
}