-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.31 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
47
{
"name": "calculate-readtime",
"version": "0.0.3",
"main": "dist",
"typings": "dist",
"repository": {
"type": "git",
"url": "https://github.com/barbarbar338/calculate-readtime"
},
"author": {
"email": "[email protected]",
"name": "Barış DEMİRCİ",
"url": "https://bariscodes.me/"
},
"license": "GPL-3.0",
"description": "⏰ Calculates the approximate reading time for the paragraph you specify.",
"scripts": {
"test": "mocha -r ts-node/register tests/*.test.ts",
"prebuild": "rimraf dist",
"build": "tsc",
"format": "prettier --write .",
"format:watch": "onchange . -- prettier --write {{changed}}",
"lint": "eslint --fix .",
"lint:watch": "onchange . -- eslint --fix {{changed}}"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.16",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"chai": "^4.2.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.8",
"mocha": "^8.2.1",
"onchange": "^7.1.0",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"husky": {
"pre-commit": "npm run format",
"pre-push": "npm run format && npm run test"
}
}