-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.03 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "poller",
"version": "0.0.5",
"description": "A FileSystem poller for Node.js",
"main": "index.js",
"scripts": {
"coveralls": "NODE_ENV=test npx nyc npm t && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"cover": "NODE_ENV=test npx nyc npm t",
"lint": "eslint index.js test/index.test.js",
"notes": "npx notes .",
"test": "NODE_ENV=test npx mocha test/* --test --exit"
},
"repository": {
"type": "git",
"url": "https://github.com/anephenix/poller.git"
},
"keywords": [
"fs"
],
"author": "Paul Jensen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/anephenix/poller/issues"
},
"homepage": "https://github.com/anephenix/poller",
"devDependencies": {
"coveralls": "^3.0.11",
"eslint": "6.8.0",
"mocha": "10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"notes": "git://github.com/anephenix/node-notes.git",
"nyc": "^15.0.0"
},
"dependencies": {
"underscore": "1.12.1"
}
}