47 lines
967 B
JSON
47 lines
967 B
JSON
{
|
|
"name": "cheap-watch",
|
|
"version": "1.0.4",
|
|
"description": "If it works, why use something else?",
|
|
"keywords": [
|
|
"async",
|
|
"asynchronous",
|
|
"file",
|
|
"watch",
|
|
"watcher"
|
|
],
|
|
"main": "dist/CheapWatch.cjs.js",
|
|
"module": "dist/CheapWatch.esm.js",
|
|
"types": "types/CheapWatch.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"types"
|
|
],
|
|
"engines": {
|
|
"node": ">=8"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Conduitry/cheap-watch.git"
|
|
},
|
|
"author": "Conduitry",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/Conduitry/cheap-watch/issues"
|
|
},
|
|
"homepage": "https://conduitry.dev/cheap-watch",
|
|
"devDependencies": {
|
|
"rollup": "^2",
|
|
"rollup-plugin-cheap-ts": "Conduitry/rollup-plugin-cheap-ts#semver:^1",
|
|
"typescript": "^3",
|
|
"@types/node": "=8"
|
|
},
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"dev": "rollup -cw",
|
|
"prepare": "npm run build",
|
|
"prepublishOnly": "npm test",
|
|
"pretest": "npm run build",
|
|
"test": "node test.js"
|
|
}
|
|
}
|