-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 2.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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "font-tracer",
"version": "3.7.1",
"description": "Trace text and the associated font-related CSS properties in a DOM",
"repository": "git://github.com/assetgraph/font-tracer.git",
"main": "lib/fontTracer.js",
"license": "BSD-3-Clause",
"devDependencies": {
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-mocha": "^10.0.1",
"eslint-plugin-n": "^15.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"magicpen-prism": "^5.0.0",
"memoizesync": "^1.1.1",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"offline-github-changelog": "^3.0.0",
"prettier": "~2.8.0",
"puppeteer": "^20.1.0",
"rollup": "^3.3.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"sinon": "^15.0.0",
"subfont": "^7.0.0",
"unexpected": "^13.0.0",
"unexpected-dom": "^5.0.0",
"unexpected-resemble": "^5.0.0",
"unexpected-sinon": "^11.0.0",
"urltools": "^0.4.1",
"webpack": "^4.43.0"
},
"files": [
"dist",
"lib"
],
"browser": "dist/fontTracer.browser.js",
"scripts": {
"lint": "eslint . && prettier --check '**/*.{js,json,md}'",
"prepare": "npm run dist",
"test": "mocha",
"test:ci": "npm run dist && npm run coverage",
"coverage": "NODE_ENV=test nyc --reporter=lcov --reporter=text --all -- mocha --reporter dot && echo google-chrome coverage/lcov-report/index.html",
"prepublishOnly": "npm run dist",
"dist": "rm -fr dist && mkdir dist && rollup --config rollup.config.js --sourcemap --format umd --name fontTracer -o dist/fontTracer.browser.js index.browser.js",
"preversion": "offline-github-changelog --next=${npm_new_version} > CHANGELOG.md && git add CHANGELOG.md"
},
"dependencies": {
"capitalize": "^2.0.3",
"counteraction": "^1.3.1",
"css-font-parser": "^2.0.0",
"css-font-parser-papandreou": "^0.2.3-patch1",
"css-font-weight-names": "^0.2.1",
"postcss-value-parser": "^4.1.0",
"reduce-css-calc": "^2.1.8",
"specificity": "^0.4.1"
},
"nyc": {
"include": [
"lib/**"
]
}
}