forked from opentypejs/opentype.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.58 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "opentype.js",
"description": "OpenType font parser",
"version": "1.3.4",
"author": {
"name": "Frederik De Bleser",
"email": "[email protected]"
},
"keywords": [
"graphics",
"fonts",
"font",
"opentype",
"otf",
"ttf",
"woff",
"type"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/opentypejs/opentype.js.git"
},
"main": "dist/opentype.js",
"module": "dist/opentype.module.js",
"bin": {
"ot": "./bin/ot"
},
"scripts": {
"start": "node ./bin/server.js",
"watch": "rollup -c -w",
"test": "mocha --require reify --recursive && jshint . && jscs .",
"build": "rollup -c",
"minify": "uglifyjs --source-map \"url='opentype.min.js.map'\" --compress --mangle --output ./dist/opentype.min.js -- ./dist/opentype.js",
"dist": "npm run test && npm run build && npm run minify"
},
"files": [
"LICENSE",
"RELEASES.md",
"README.md",
"bin",
"dist",
"src"
],
"engines": {
"node": ">= 8.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.9.5",
"buble": "^0.20.0",
"cross-env": "^7.0.2",
"jscs": "^3.0.7",
"jshint": "^2.11.0",
"mocha": "^7.1.1",
"reify": "^0.20.12",
"rollup": "^1.32.1",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-license": "^0.9.0",
"rollup-plugin-node-resolve": "^5.2.0",
"uglify-js": "^3.8.1"
},
"browser": {
"fs": false
},
"dependencies": {
"string.prototype.codepointat": "^0.2.1",
"tiny-inflate": "^1.0.3"
}
}