forked from AprilArcus/typeset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.37 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
{
"name": "typeset",
"version": "0.0.2",
"description": "TeX line breaking algorithm in JavaScript",
"main": "dist/index.js",
"scripts": {
"start": "node examples/index.js",
"build": "babel src -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AprilArcus/typeset.git"
},
"author": "Bram Stein & April Arcus",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/AprilArcus/typeset/issues"
},
"homepage": "https://github.com/AprilArcus/typeset#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.1.2",
"babel-plugin-transform-exponentiation-operator": "^6.8.0",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"brfs": "^1.4.1",
"express": "^4.13.3",
"jquery": "^2.1.4",
"lodash": "^4.17.15",
"webpack": "^4.13.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.20.0"
},
"dependencies": {
"babel-polyfill": "^6.0.16",
"babel-preset-env": "^1.6.1",
"hyphenation.en-us": "^0.2.1",
"hypher": "^0.2.3",
"linebreak": "^0.3.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"env"
],
"plugins": [
"transform-exponentiation-operator",
"transform-flow-strip-types"
]
}
]
]
}
}