-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
55 lines (55 loc) · 1.25 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
{
"name": "load-bmfont",
"version": "1.4.1",
"description": "loads a BMFont file in Node and the browser",
"main": "index.js",
"browser": "browser.js",
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"email": "[email protected]",
"url": "https://github.com/mattdesl"
},
"dependencies": {
"buffer-equal": "0.0.1",
"mime": "^1.3.4",
"parse-bmfont-ascii": "^1.0.3",
"parse-bmfont-binary": "^1.0.5",
"parse-bmfont-xml": "^1.1.4",
"phin": "^3.7.1",
"xhr": "^2.0.1",
"xtend": "^4.0.0"
},
"devDependencies": {
"browserify": "^9.0.3",
"tap-spec": "^2.2.2",
"tape": "^3.5.0",
"testling": "^1.7.1"
},
"scripts": {
"test-node": "(node test.js; node test-server.js) | tap-spec",
"test-browser": "browserify test.js | testling | tap-spec",
"test": "npm run test-node && npm run test-browser"
},
"keywords": [
"bmfont",
"bitmap",
"font",
"angel",
"code",
"angelcode",
"parse",
"ascii",
"xml",
"text",
"json"
],
"repository": {
"type": "git",
"url": "git://github.com/Jam3/load-bmfont.git"
},
"homepage": "https://github.com/Jam3/load-bmfont",
"bugs": {
"url": "https://github.com/Jam3/load-bmfont/issues"
}
}