You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cheap-watch/package.json

44 lines
853 B
JSON

{
"name": "cheap-watch",
5 years ago
"version": "1.0.1",
"description": "If it works, why use something else?",
"keywords": [
"async",
"asynchronous",
"file",
"watch",
"watcher"
],
"main": "./dist/CheapWatch.cjs.js",
"module": "./dist/CheapWatch.es.js",
"files": [
"dist"
],
"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"
},
5 years ago
"homepage": "https://conduitry.io/cheap-watch",
"devDependencies": {
"rollup": "*",
"typescript": "*",
"@types/node": "*"
},
"scripts": {
"build": "tsc && rollup -c",
"dev": "rollup -cw",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"pretest": "npm run build",
"test": "node test.js"
}
}