forked from foliojs/linebreak
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.45 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
{
"name": "linebreak",
"version": "0.4.0",
"description": "A browser-friendly implementation of the Unicode Line Breaking Algorithm (UAX #14)",
"repository": {
"type": "git",
"url": "https://github.com/devongovett/linebreaker.git"
},
"keywords": [
"unicode",
"text",
"wrapping"
],
"author": "Devon Govett <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/devongovett/linebreaker/issues"
},
"homepage": "https://github.com/devongovett/linebreaker",
"dependencies": {
"base64-js": "0.0.8",
"unicode-trie": "^0.3.0"
},
"devDependencies": {
"brfs-babel": "^1.0.0",
"coffeescript": "^2.3.2",
"del": "^4.0.0",
"mocha": "*",
"request": "^2.81.0",
"rollup": "^1.4.1",
"rollup-plugin-babel-minify": "^7.0.0",
"rollup-plugin-browserify-transform": "^1.0.1",
"rollup-plugin-coffee-script": "^2.0.0",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-node-resolve": "^4.0.1"
},
"scripts": {
"build": "node tools/rollup_build_script.js",
"generate-data": "coffee -c tools/generate_data.coffee src/classes.coffee && node tools/generate_data.js && rm tools/generate_data.js src/classes.js",
"prepublishOnly": "npm run generate-data && npm run build || npm run build",
"postpublish": "rm -rf dist/",
"test": "node_modules/mocha/bin/mocha test/index.coffee"
},
"main": "dist/linebreak.umd.min.js",
"module": "dist/linebreak.es.min.js"
}