1
Fork 0
cheap-watch/package.json

41 lines
761 B
JSON
Raw Normal View History

2018-04-02 20:33:41 +00:00
{
"name": "cheap-watch",
2018-04-04 01:56:08 +00:00
"version": "0.3.0",
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-04-02 20:33:41 +00:00
"main": "./dist/CheapWatch.cjs.js",
"module": "./CheapWatch.js",
2018-04-03 03:03:16 +00:00
"files": [
"CheapWatch.js",
"dist"
],
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"
},
2018-09-06 18:57:47 +00:00
"homepage": "https://conduitry.io/cheap-watch",
"devDependencies": {
2018-04-03 03:03:16 +00:00
"rollup": "*"
},
"scripts": {
2018-04-03 10:53:51 +00:00
"build": "rollup -c",
2018-04-03 15:54:46 +00:00
"pretest": "npm run build",
"test": "node test.js",
"prepublishOnly": "npm test"
2018-04-03 03:03:16 +00:00
}
2018-04-02 20:33:41 +00:00
}