-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
107 lines (107 loc) · 3.34 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "localized-readability",
"description": "Generate readability statistics with localized options.",
"version": "1.4.3",
"author": "Ole Vik <[email protected]> (https://olevik.me/)",
"bugs": "https://github.com/OleVik/localized-readability/issues",
"contributors": [
"Ole Vik (https://github.com/OleVik)",
"Simon Hartmann (https://github.com/herrhartmann)"
],
"dependencies": {
"@fluid-project/hyphenation-patterns": "^0.2.2-dev.20181115T211247Z.d313a52",
"automated-readability": "^1.0.3",
"coleman-liau": "^1.0.3",
"flesch-kincaid": "^1.0.3",
"hypher": "^0.2.5",
"mdast-util-to-nlcst": "^3.2.2",
"nlcst-to-string": "^2.0.2",
"parse-latin": "^4.2.0",
"release-it": "^17.1.1",
"remark": "^10.0.1",
"smog-formula": "^1.0.3",
"unist-util-map": "^1.0.4",
"unist-util-select": "^2.0.0",
"vfile": "^4.0.0"
},
"devDependencies": {
"@release-it/keep-a-changelog": "^5.0.0",
"browserify": "^16.2.3",
"docma": "^3.2.2",
"dotenv": "^8.0.0",
"eslint": "^5.16.0",
"fixpack": "^2.3.1",
"http-server": "^0.12.3",
"jest": "^24.8.0",
"parse-english": "^4.1.2",
"promise-worker": "^2.0.1",
"simplifyify": "^7.0.2",
"tinyify": "^2.5.0"
},
"engines": {
"node": ">=20.11.0"
},
"files": [
"dist",
"src",
"test"
],
"homepage": "https://olevik.github.io/localized-readability/",
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/*.js"
]
},
"jsdelivr": "dist/localized-readability.min.js",
"keywords": [
"automated readability index",
"characters",
"coleman-liau",
"flesch",
"flesch-kincaid",
"letters",
"lix",
"localized",
"long words",
"paragraphs",
"periods",
"polysillabic words",
"punctuations",
"readability",
"rix",
"sentences",
"smog",
"syllables",
"textstat",
"whitespaces",
"words"
],
"license": "MIT",
"main": "index.js",
"release-it": {
"plugins": {
"@release-it/keep-a-changelog": {
"filename": "CHANGELOG.md"
}
}
},
"repository": "github:OleVik/localized-readability",
"scripts": {
"build": "npm run setup && npm run build-module && npm run build-module-min && npm run build-patterns && npm run build-annotations && npm run build-hypher",
"build-annotations": "simplifyify annotations/**/*.js --outfile=dist/annotations --standalone Annotations --plugin tinyify",
"build-hypher": "browserify node_modules/hypher/lib/hypher.js --standalone Hypher --plugin tinyify > dist/hypher.js",
"build-module": "browserify index.js --standalone LocalizedReadability > dist/localized-readability.js",
"build-module-min": "browserify index.js --standalone LocalizedReadability --plugin tinyify > dist/localized-readability.min.js",
"build-patterns": "simplifyify node_modules/@fluid-project/hyphenation-patterns/patterns/**/*.js --outfile=dist/patterns --standalone HyphenationPatterns --plugin tinyify",
"clean": "fixpack",
"docs": "docma -c ./build/docma.json",
"lint": "eslint src/** --fix",
"prepublishOnly": "npm run lint && npm run test && npm run build && npm run clean && npm run docs",
"release": "release-it",
"serve": "http-server",
"setup": "node src/setup.js",
"test": "jest --no-cache"
},
"unpkg": "dist/localized-readability.min.js"
}