-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.26 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
{
"name": "words-n-numbers",
"version": "9.1.2",
"description": "Tokenizing strings of text. Extracting arrays of words and optionally number, emojis, tags, usernames and email addresses from strings. For Node.js and the browser. When you need more than just [a-z] regular expressions.",
"main": "./dist/words-n-numbers.cjs.js",
"module": "./dist/words-n-numbers.esm.mjs",
"browser": "./dist/words-n-numbers.umd.js",
"scripts": {
"build": "rollup --config",
"test": "standard './*.js' && npm run build && npm run copy && npx ava ./test/test.cjs.js && npx ava ./test/test.esm.mjs && npx ava ./test/ui-test.js",
"copy": "cp ./dist/words-n-numbers.umd.js ./demo/js/words-n-numbers.umd.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eklem/words-n-numbers.git"
},
"files": [
"./dist"
],
"keywords": [
"nlp",
"regex",
"words",
"tokenizer",
"tokenization",
"offline-first",
"numbers",
"emojis",
"extract"
],
"devDependencies": {
"batr": "^2.1.10",
"rgi-emoji-regex-pattern": "^1.3.1"
},
"author": "Espen Klem",
"license": "MIT",
"bugs": {
"url": "https://github.com/eklem/words-n-numbers/issues"
},
"homepage": "https://github.com/eklem/words-n-numbers#readme"
}