-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 966 Bytes
/
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
{
"name": "time-to-read",
"version": "1.0.0",
"description": "A lightweight (1kB) Estimate time to read (support cjk)",
"main": "dist/time-to-read.js",
"module": "lib/time-to-read.js",
"typings": "time-to-read.d.ts",
"scripts": {
"build:prod": "rollup --config",
"build:minify": "cross-env NODE_ENV=minify rollup --config",
"build": "npm run build:prod && npm run build:minify",
"test": "npm run build && jest --no-cache --coverage",
"prepublishOnly": "npm run build"
},
"author": "Jungwoo-An <o1o9814@naver.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Jungwoo-An/time-to-read.git"
},
"bugs": {
"url": "https://github.com/Jungwoo-An/time-to-read/issues"
},
"homepage": "https://github.com/Jungwoo-An/time-to-read#readme",
"devDependencies": {
"cross-env": "^5.2.0",
"jest": "^24.1.0",
"rollup": "^1.2.1",
"rollup-plugin-uglify": "^6.0.2"
}
}