UNPKG

968 BJSONView Raw
1{
2 "version": "0.2.5",
3 "name": "watches",
4 "repository": {
5 "type": "git",
6 "url": "git+https://github.com/marshallcb/watches.git"
7 },
8 "description": "Watch ES6 modules and their dependencies for changes",
9 "module": "dist/index.mjs",
10 "main": "dist/index.js",
11 "license": "MIT",
12 "author": {
13 "name": "Marshall Brandt",
14 "email": "hey@m4r.sh",
15 "url": "https://m4r.sh"
16 },
17 "files": [
18 "dist",
19 "types"
20 ],
21 "types": "types/index.d.ts",
22 "engines": {
23 "node": ">= 10"
24 },
25 "scripts": {
26 "build": "rollup -c",
27 "test": "node -r esm test/outputs",
28 "dev": "npm run build && npm run test"
29 },
30 "keywords": [
31 "watch",
32 "watches",
33 "es6",
34 "javascript",
35 "dependencies"
36 ],
37 "devDependencies": {
38 "@rollup/plugin-node-resolve": "8.1.0",
39 "es-module-lexer": "^0.3.26",
40 "esm": "^3.2.25",
41 "rollup": "2.21.0",
42 "totalist": "^2.0.0"
43 },
44 "dependencies": {
45 "chokidar": "^3.4.3"
46 }
47}