-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 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
{
"name": "font-snapper",
"version": "1.2.0",
"description": "An implementation of the font matching algorithm, https://www.w3.org/TR/css-fonts-3/#font-style-matching",
"main": "lib/fontSnapper.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"lint": "eslint . && prettier --check '**/*.js'",
"test": "mocha",
"coverage": "NODE_ENV=test nyc --reporter=lcov --reporter=text --all -- mocha --reporter dot && echo google-chrome coverage/lcov-report/index.html",
"test:ci": "npm run coverage"
},
"license": "BSD-3-Clause",
"devDependencies": {
"chance-generators": "^3.5.2",
"css-generators": "^0.3.0",
"eslint": "^5.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-mocha": "^5.2.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"lodash": "^4.17.19",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"playwright": "^1.2.1",
"postcss": "^7.0.32",
"prettier": "~1.16.0",
"unexpected": "^11.1.0",
"unexpected-check": "^2.4.1"
},
"nyc": {
"include": [
"lib/**"
]
},
"dependencies": {
"css-font-weight-names": "^0.2.1",
"font-family-papandreou": "^0.2.0-patch1"
}
}