-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.7 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
{
"name": "readability-component",
"version": "1.0.10",
"type": "module",
"description": "This is a fairly simple web component that can be used to wrap around your content and determine its readability level, as well as the average time it would take to read.",
"main": "dist/readability.cjs.min.js",
"module": "dist/readability.es.min.js",
"scripts": {
"start": "npm-run-all clean --parallel start:server start:dev",
"start:server": "http-server -p 8080 ./",
"start:dev": "npm run build:dev -- --watch",
"build": "npm-run-all clean --parallel build:*",
"build:dev": "rollup --config rollup/rollup.config.dev.js",
"build:prod": "rollup --config rollup/rollup.config.prod.js",
"generate-syllable-map": "node --experimental-json-modules data/syllableCountMapGenerator.js",
"clean": "rimraf dist",
"test": "jest",
"prepublishOnly": "npm-run-all test build"
},
"author": "Richie Casto (https://github.com/rcasto)",
"homepage": "https://github.com/rcasto/readability-component#readme",
"repository": {
"type": "git",
"url": "https://github.com/rcasto/readability-component.git"
},
"keywords": [
"web component",
"readability",
"flesch–kincaid",
"flesch",
"kincaid",
"time to read"
],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/core": "7.10.5",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/preset-env": "7.10.4",
"@rollup/plugin-babel": "5.1.0",
"@rollup/plugin-json": "4.1.0",
"babel-jest": "26.1.0",
"http-server": "0.12.3",
"jest": "26.1.0",
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"rollup": "2.22.1",
"rollup-plugin-terser": "6.1.0"
}
}