1
Fork 0
cheap-watch/package.json

47 lines
963 B
JSON
Raw Normal View History

2018-04-02 16:33:41 -04:00
{
"name": "cheap-watch",
2018-11-13 07:18:37 -05:00
"version": "1.0.2",
2018-04-02 16:33:41 -04:00
"description": "If it works, why use something else?",
2018-04-02 23:03:16 -04:00
"keywords": [
"async",
"asynchronous",
"file",
"watch",
"watcher"
],
2018-11-13 07:17:56 -05:00
"main": "dist/CheapWatch.cjs.js",
2018-11-17 09:25:30 -05:00
"module": "dist/CheapWatch.esm.js",
2018-11-13 07:17:56 -05:00
"types": "types/CheapWatch.d.ts",
2018-04-02 23:03:16 -04:00
"files": [
2018-11-13 07:17:56 -05:00
"dist",
"types"
2018-04-02 23:03:16 -04:00
],
2018-04-02 16:33:41 -04:00
"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"
},
2019-05-31 16:15:02 -04:00
"homepage": "https://cndtr.dev/cheap-watch",
"devDependencies": {
"rollup": "^1",
"rollup-plugin-cheap-ts": "Conduitry/rollup-plugin-cheap-ts#semver:^1",
"typescript": "^3",
2019-08-27 19:44:10 -04:00
"@types/node": "=8"
2018-04-02 23:03:16 -04:00
},
"scripts": {
2018-11-10 13:22:10 -05:00
"build": "rollup -c",
2018-10-11 04:29:37 -04:00
"dev": "rollup -cw",
"prepare": "npm run build",
"prepublishOnly": "npm test",
2018-04-03 11:54:46 -04:00
"pretest": "npm run build",
2018-10-11 04:29:37 -04:00
"test": "node test.js"
2018-04-02 23:03:16 -04:00
}
2018-04-02 16:33:41 -04:00
}