forked from opentypejs/opentype.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.32 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.10",
"author": {
"name": "Frederik De Bleser",
"email": "frederik@debleser.be"
},
"keywords": [
"graphics",
"fonts",
"opentype",
"otf",
"ttf",
"type"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/nodebox/opentype.js.git"
},
"main": "src/opentype.js",
"bin": {
"ot": "./bin/ot"
},
"scripts": {
"watch": "watchify src/opentype.js --standalone opentype --debug -o build/opentype.js -v",
"start": "mkdirp build && parallelshell \"npm run watch\" \"node ./bin/server.js\"",
"test": "mocha --recursive && jshint . && jscs .",
"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": "rimraf build && rimraf dist && mkdirp build && mkdirp dist && npm run test && npm run browserify && npm run uglify"
},
"devDependencies": {
"browserify": "^9.0.3",
"jscs": "^1.12.0",
"jshint": "^2.8.0",
"mkdirp": "^0.5.1",
"mocha": "^2.2.5",
"parallelshell": "^1.1.1",
"rimraf": "^2.4.0",
"uglifyify": "^3.0.1",
"watchify": "^2.6.0"
},
"browser": {
"fs": false
}
}