1
Fork 0
cheap-watch/package.json

47 lines
963 B
JSON
Raw Normal View History

2018-04-02 20:33:41 +00:00
{
"name": "cheap-watch",
2018-11-13 12:18:37 +00:00
"version": "1.0.2",
2018-04-02 20:33:41 +00:00
"description": "If it works, why use something else?",
2018-04-03 03:03:16 +00:00
"keywords": [
"async",
"asynchronous",
"file",
"watch",
"watcher"
],
2018-11-13 12:17:56 +00:00
"main": "dist/CheapWatch.cjs.js",
2018-11-17 14:25:30 +00:00
"module": "dist/CheapWatch.esm.js",
2018-11-13 12:17:56 +00:00
"types": "types/CheapWatch.d.ts",
2018-04-03 03:03:16 +00:00
"files": [
2018-11-13 12:17:56 +00:00
"dist",
"types"
2018-04-03 03:03:16 +00:00
],
2018-04-02 20:33:41 +00: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 20:15:02 +00: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 23:44:10 +00:00
"@types/node": "=8"
2018-04-03 03:03:16 +00:00
},
"scripts": {
2018-11-10 18:22:10 +00:00
"build": "rollup -c",
2018-10-11 08:29:37 +00:00
"dev": "rollup -cw",
"prepare": "npm run build",
"prepublishOnly": "npm test",
2018-04-03 15:54:46 +00:00
"pretest": "npm run build",
2018-10-11 08:29:37 +00:00
"test": "node test.js"
2018-04-03 03:03:16 +00:00
}
2018-04-02 20:33:41 +00:00
}