1
Fork 0
cheap-watch/package.json

39 lines
710 B
JSON
Raw Normal View History

2018-04-02 16:33:41 -04:00
{
"name": "cheap-watch",
2018-04-02 19:50:36 -04:00
"version": "0.2.0",
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-04-02 16:33:41 -04:00
"main": "./dist/CheapWatch.cjs.js",
"module": "./CheapWatch.js",
2018-04-02 23:03:16 -04:00
"files": [
"CheapWatch.js",
"dist"
],
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"
},
2018-04-02 23:03:16 -04:00
"homepage": "https://cndtr.io/cheap-watch/",
"dependencies": {
"rollup": "*"
},
"scripts": {
2018-04-03 06:53:51 -04:00
"build": "rollup -c",
"test": "npm run build && node test.js"
2018-04-02 23:03:16 -04:00
}
2018-04-02 16:33:41 -04:00
}