-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "@liquid-labs/playground-monitor",
"version": "1.0.0-beta.4",
"description": "A file-watching utility to track changes to a developers \"playground\".",
"main": "dist/playground-monitor.js",
"files": [
"./dist",
"LICENSE.txt",
"README.md"
],
"scripts": {
"build": "make",
"lint": "make lint",
"lint:fix": "make lint-fix",
"test": "make test",
"prepack": "make build",
"preversion": "make test && make lint",
"qa": "make qa"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"file",
"watch",
"watch file",
"watcher",
"watchFile"
],
"author": "Zane Rockenbaugh <zane@liquid-labs.com>",
"license": "Apache-2.0",
"repository": "git+ssh://git@github.com/liquid-labs/playground-monitor.git",
"bugs": {
"url": "https://github.com/liquid-labs/playground-monitor/issues"
},
"homepage": "https://github.com/liquid-labs/playground-monitor#readme",
"dependencies": {
"find-plus": "^1.1.1"
},
"devDependencies": {
"@liquid-labs/catalyst-resource-babel-and-rollup": "^1.0.0-alpha.3",
"@liquid-labs/catalyst-resource-eslint": "^1.0.0-alpha.1",
"@liquid-labs/catalyst-resource-jest": "^1.0.0-alpha.3"
}
}