-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.59 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.59 KB
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
{
"name": "parse-font-name",
"version": "1.2.0",
"description": "Extract font weight (in steps of spec-valid 100s) and style (italic) data from the name of a font in a more robust way than most libraries do.",
"main": "lib/index.js",
"module": "lib/index.mjs",
"typings": "lib/index.d.ts",
"author": {
"name": "Thomas Strobl",
"email": "thomas@thomas-strobl.com",
"url": "https://thomas-strobl.com"
},
"scripts": {
"build": "rollup -c",
"test": "jest --config jest.json --coverage",
"benchmark": "node benchmark/index.js"
},
"files": [
"lib/index.js",
"lib/index.d.ts",
"lib/index.js.map",
"lib/index.mjs",
"lib/index.mjs.map"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tom2strobl/parse-font-name.git"
},
"keywords": [
"font-weight",
"font-style",
"fonts",
"typefaces",
"font",
"typeface",
"typed"
],
"license": "MIT",
"np": {
"2fa": false
},
"bugs": {
"url": "https://github.com/tom2strobl/parse-font-name/issues"
},
"homepage": "https://github.com/tom2strobl/parse-font-name#readme",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-typescript": "^8.5.0",
"babel-jest": "^27.5.1",
"benny": "^3.7.1",
"esbuild": "^0.15.7",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"rollup": "^2.79.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-esbuild": "^4.10.1",
"tslib": "^2.4.0",
"typescript": "^4.6.3"
}
}