-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
39 lines (39 loc) · 1.3 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
{
"name": "intl-segmenter-polyfill",
"version": "0.4.4",
"description": "This repo builds .wasm module using icu4c for breaking text into words, so that we can polyfill [Intl Segmenter Proposal](https://github.com/tc39/proposal-intl-segmenter) with full compatibility, even on browsers that do not expose v8BreakIterator api.",
"main": "dist/index.js",
"files": [
"dist/",
"src/"
],
"scripts": {
"prepublish": "npm run build",
"build": "cp src/break_iterator.wasm dist/ && rollup -c rollup.config.js && rollup -c rollup.config.bundled.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/surferseo/intl-segmenter-polyfill.git"
},
"author": "Lucjan Suski",
"license": "ISC",
"bugs": {
"url": "https://github.com/surferseo/intl-segmenter-polyfill/issues"
},
"homepage": "https://github.com/surferseo/intl-segmenter-polyfill#readme",
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@rollup/plugin-babel": "^5.0.3",
"@rollup/plugin-wasm": "^5.0.0",
"core-js": "^3.6.5",
"jest": "^26.0.1",
"rollup": "^2.16.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0"
},
"dependencies": {
"fast-text-encoding": "^1.0.2"
}
}