-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.04 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.04 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
{
"name": "font-query",
"version": "2.1.0",
"description": "font-query is a Node.js package for query the fonts available on your system.",
"main": "index.js",
"bin" : {
"font-query": "./bin/font-query.js"
},
"files": [
"libs/*.js"
],
"scripts": {
"test": "mocha",
"lint:fix": "eslint . --fix --ext .js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/salsan/font-query.git"
},
"keywords": [
"font",
"fonts",
"windows",
"win10",
"query",
"linux",
"findstr",
"grep",
"fc-list",
"reg"
],
"author": "Salvatore Santagati",
"license": "MIT",
"bugs": {
"url": "https://github.com/salsan/font-query/issues"
},
"homepage": "https://github.com/salsan/font-query#readme",
"devDependencies": {
"eslint": "^9.0.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"mocha": "^10.1.0"
},
"dependencies": {
"c2array": "^0.0.3"
}
}