forked from algolia/chunk-text
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.32 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": "chunk-text",
"version": "1.1.0",
"description": "🔪 chunk/split a string by length without cutting/truncating words.",
"type": "commonJs",
"module": "./dist/index.js",
"main": "./dist/index.js",
"exports": {
"import": "./dist/index.js",
"default": "./dist/index.js",
"chunk": "./dist/server.js",
"chunk-text": "./dist/server.js"
},
"repository": "https://github.com/algolia/chunk-text",
"author": "Raymond RUTJES <raymond.rutjes@algolia.com>",
"license": "MIT",
"files": [
"dist"
],
"bin": {
"chunk": "./bin/server.js",
"chunk-text": "./bin/server.js"
},
"scripts": {
"test": "npm run-script lint && jest",
"build": "babel src --out-dir dist --delete-dir-on-start --ignore \"**/__tests__/*\"",
"lint": "eslint src",
"lint:fix": "npm run-script lint --fix",
"changelog": "conventional-changelog --preset angular --infile CHANGELOG.md --same-file",
"changelog:unreleased": "conventional-changelog --preset angular --output-unreleased",
"start": "node --unhandled-rejections=strict --trace-warnings ./bin/server.js",
"chunk": "npm run-script start",
"chunk-text": "npm run-script start"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/runtime": "^7.10.5",
"babel-core": "6.26.3",
"babel-eslint": "10.1.0",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-add-module-exports": "^1.0.2",
"conventional-changelog-cli": "^2.0.34",
"eslint": "7.5.0",
"eslint-config-algolia": "^16.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-prettier": "^3.1.4",
"fastestsmallesttextencoderdecoder-encodeinto": "^1.0.22",
"jest": "^26.1.0",
"prettier": "^2.0.5"
},
"dependencies": {
"runes": "^0.4.3"
},
"keywords": [
"chunk-text",
"split",
"chunk",
"algolia",
"text",
"string",
"array",
"length",
"index",
"size",
"splice",
"slice",
"text-processing",
"text processing",
"multi-byte",
"multibyte",
"multi",
"byte",
"runes",
"rune",
"glyphs",
"glyph",
"encoding",
"emoji",
"MIT"
]
}