-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "reading-time",
"version": "2.0.0-1",
"description": "Medium's like reading time estimation.",
"main": "dist/index.js",
"browser": "dist/reading-time.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint --cache \"**/*.{js,ts}\"",
"spec": "ts-mocha test/*.ts",
"test": "npm run lint && npm run spec",
"build": "tsc -p tsconfig-build.json",
"prepublishOnly": "npm run build"
},
"repository": "ngryman/reading-time",
"keywords": [
"read",
"time",
"read time",
"reading time",
"medium",
"words per minute"
],
"author": "Nicolas Gryman <[email protected]> (http://ngryman.sh)",
"contributors": [
"Joshua Chen <[email protected]> (https://joshcena.com)"
],
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/expect": "^24.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.10",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"chai": "^4.1.0",
"eslint": "^7.32.0",
"eslint-config-ngryman": "^1.7.0",
"mocha": "^8.4.0",
"ts-mocha": "^8.0.0",
"typescript": "^4.4.2"
}
}