forked from opentypejs/opentype.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.11 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
{
"name": "opentype.js",
"description": "OpenType font parser",
"version": "0.4.4",
"author": {
"name": "Frederik De Bleser",
"email": "[email protected]"
},
"keywords": [
"graphics",
"fonts",
"opentype",
"otf",
"ttf",
"type"
],
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/nodebox/opentype.js/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "git://github.com/nodebox/opentype.js.git"
},
"main": "src/opentype.js",
"bin": {
"ot": "./bin/ot"
},
"scripts": {
"start": "mkdir -p build && bin/server.js",
"test": "jshint src",
"browserify": "browserify src/opentype.js --bare --standalone opentype > dist/opentype.js",
"uglify": "browserify src/opentype.js --bare --standalone opentype -g uglifyify > dist/opentype.min.js",
"dist": "npm run test && npm run browserify && npm run uglify"
},
"dependencies": {},
"devDependencies": {
"browserify": "^6.2.0",
"jshint": "^2.5.10",
"uglifyify": "^2.6.0",
"watchify": "^2.1.1"
},
"browser" : {
"fs": false
}
}