-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "invisible-ink",
"version": "1.1.1",
"description": "Tool for stripping vector paths from font files",
"bin": {
"invisible-ink": "bin/invisible-ink.js"
},
"main": "lib/index.js",
"scripts": {
"test:integration": "mocha test/cli.integration.test.js",
"test:regression": "mocha test/lib.regression.test.js",
"test:unit": "mocha test/lib.unit.test.js",
"test": "npm run test:unit && npm run test:integration && npm run test:regression",
"rebuild-examples": "node utils/rebuild-examples.js",
"start-demo-server": "node utils/throttled-web-server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Y2Z/invisible-ink.git"
},
"keywords": [
"command line",
"tool",
"font",
"webfont",
"preload",
"placeholder"
],
"author": "Sunshine <sunshine@uberspace.net>",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/Y2Z/invisible-ink/issues"
},
"homepage": "https://y2z.github.io/projects/invisible-ink",
"dependencies": {
"base64-arraybuffer": "0.2.0",
"commander": "6.2.1",
"opentype.js": "1.3.3",
"simplify-js": "1.2.4"
},
"devDependencies": {
"mocha": "8.2.1",
"pixelmatch": "5.2.1",
"puppeteer": "5.5.0",
"throttle": "1.0.3"
}
}