-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.28 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
{
"name": "@wakamai-fondue/cli",
"version": "1.0.1",
"description": "",
"scripts": {
"test": "jest",
"lint": "eslint .",
"prepare": "cd vendor/wf-engine && npm i"
},
"bin": {
"wakamai-fondue": "cli.js"
},
"files": [
"cli.js",
"vendor/wf-engine/lib",
"README.md"
],
"keywords": [
"font",
"truetype",
"opentype",
"typography",
"variable fonts",
"otf",
"ttf",
"woff",
"woff2",
"css"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Wakamai-Fondue/wakamai-fondue-cli.git"
},
"author": "RoelN",
"license": "ISC",
"bugs": {
"url": "https://github.com/Wakamai-Fondue/wakamai-fondue-cli/issues"
},
"homepage": "https://github.com/Wakamai-Fondue/wakamai-fondue-cli#readme",
"devDependencies": {
"eslint": "^7.8.1",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1"
},
"dependencies": {
"commander": "^6.1.0"
},
"lint-staged": {
"*.{js,cjs,mjs,json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"./vendor/.*"
]
},
"engines": {
"node": ">=12"
}
}