-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
86 lines (86 loc) · 1.75 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@wakamai-fondue/engine",
"version": "1.0.0",
"description": "What if you could actually inspect your web fonts? In the same context that you actually use those web fonts? That's what this is for.",
"module": "./index.js",
"main": "./lib/index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "jest",
"lint": "eslint .",
"build": "rollup -c",
"watch": "rollup -c -w",
"prepare": "npm run --silent build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Wakamai-Fondue/wakamai-fondue-engine.git"
},
"keywords": [
"font",
"ttf",
"woff",
"woff2",
"otf",
"fontkit",
"opentype",
"lib-font",
"layout",
"css"
],
"author": "RoelN",
"license": "ISC",
"bugs": {
"url": "https://github.com/Wakamai-Fondue/wakamai-fondue-engine/issues"
},
"homepage": "https://wakamaifondue.com/",
"devDependencies": {
"@babel/preset-env": "^7.10.2",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"babel-jest": "^26.0.1",
"eslint": "^7.4.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"rollup": "^2.21.0"
},
"jest": {
"verbose": true,
"moduleDirectories": [
"src",
"node_modules"
],
"transformIgnorePatterns": [
"node_modules/(?!lib-font)"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/*.{js,jsx}"
]
},
"lint-staged": {
"*.{js,cjs,mjs,json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"engines": {
"node": ">=12"
},
"dependencies": {
"lib-font": "^2.4.2"
}
}