-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.28 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
38
39
40
41
42
43
44
45
46
{
"name": "pollsky",
"version": "1.2.0",
"description": "Chained Polling Library for Node.js: Friendly API with no external dependencies.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc -b tsconfig.json",
"prepublishOnly": "npm run build && npm run lint && npm run test",
"test": "nyc --reporter=html --reporter=text --check-coverage=true mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint . --ext .ts --fix"
},
"author": "Marek Siemieniuk-Morawski",
"repository": {
"type": "git",
"url": "https://github.com/marek-siemieniuk-morawski/pollsky"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/marek-siemieniuk-morawski/pollsky/issues"
},
"devDependencies": {
"@types/chai": "^4.2.19",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.5",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.0.1",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"keywords": [
"typescript",
"promise",
"promises",
"poller",
"polling",
"poll"
]
}