forked from schickling/calculate-size
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 913 Bytes
/
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
{
"name": "calculate-size",
"version": "1.1.1",
"description": "Calculate the pixel size of a string",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "ava -s test/index.js",
"prepublish": "npm run build",
"build": "rm -rf lib && tsc"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/schickling/calculate-size.git"
},
"keywords": [
"font",
"calculate",
"size",
"width",
"height",
"dimension"
],
"author": "Johannes Schickling <[email protected]> (https://github.com/schickling)",
"license": "MIT",
"bugs": {
"url": "https://github.com/schickling/calculate-size/issues"
},
"homepage": "https://github.com/schickling/calculate-size",
"devDependencies": {
"ava": "^0.17.0",
"express": "^4.14.0",
"nightmare": "^2.8.1",
"typescript": "^2.0.10"
}
}