-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
56 lines (56 loc) · 1.64 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.3.4",
"description": "Typesetting for the web",
"keywords": [
"typeset",
"typography",
"hyphenation",
"ligatures",
"optical margin alignment",
"small caps"
],
"homepage": "https://github.com/davidmerfield/Typeset.js",
"bugs": {
"url": "https://github.com/davidmerfield/Typeset.js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/davidmerfield/Typeset.js.git"
},
"license": "MIT",
"author": "David Merfield",
"contributors": [
"Daniel Haim <[email protected]> (https://danielhaim.com)"
],
"main": "src/index.js",
"bin": {
"typeset-js": "src/cmd.js"
},
"scripts": {
"build": "npm run clean && npm run build-dev && npm run build-prod",
"build-dev": "./node_modules/webpack/bin/webpack.js",
"build-prod": "PROD=1 ./node_modules/webpack/bin/webpack.js",
"clean": "rm -rf build/",
"jshint": "jshint ./src",
"test": "mocha -u bdd -R spec -t 500 --recursive",
"watch": "mocha test -u bdd -R spec -t 500 --recursive --watch || true",
"release": "npm version patch && npm run build && git add package.json package-lock.json build/ && git commit -m 'Bump version and build package for release' && git push"
},
"dependencies": {
"chai": "^4.3.6",
"cheerio": "^0.22.0",
"commander": "^6.2.1",
"html-entities": "^1.4.0",
"html-minifier": "^4.0.0",
"hypher": "^0.2.5",
"jsdom": "^22.1.0",
"jshint": "^2.13.5",
"minimist": "^1.2.6",
"mocha": "^8.4.0",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"xmlserializer": "^0.6.1"
}
}