-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
87 lines (87 loc) · 2.21 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "read-time-estimate",
"version": "0.0.3",
"description": "A Medium like read time estimate with more accuracy and customisable values",
"main": "dist/read-time-estimate.cjs.js",
"module": "dist/read-time-estimate.js",
"scripts": {
"prebuild": "rimraf dist",
"prepublishOnly": "run-s build",
"prepack": "run-s build",
"build": "rollup -c",
"test": "jest",
"test:watch": "npm run test -- --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --ignore-path .gitignore --ext .js --ext .jsx",
"fix-lint": "yarn lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pritishvaidya/read-time-estimate.git"
},
"files": [
"dist"
],
"keywords": [
"read",
"read-time",
"medium-read-time",
"read-time-estimate"
],
"author": {
"name": "Pritish Vaidya",
"email": "[email protected]",
"url": "pritishvaidya.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pritishvaidya/read-time-estimate/issues"
},
"homepage": "https://github.com/pritishvaidya/read-time-estimate#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "^5.12.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.15.0",
"husky": "^1.3.1",
"jest": "^23.6.0",
"jest-extended": "^0.11.0",
"lint-staged": "^8.1.0",
"npm-run-all": "^4.1.5",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^4.0.2"
},
"dependencies": {},
"jest": {
"setupTestFrameworkScriptFile": "jest-extended",
"transform": {
"^.+\\.(js|jsx|ts)$": "babel-jest"
}
},
"lint-staged": {
"linters": {
"*.js": [
"eslint --fix",
"git add"
]
},
"ignore": [
"**/test/*.js"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}