-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 2.07 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
{
"name": "woff2base64",
"version": "1.0.1",
"description": "Generates CSS with woff2 and woff fonts embedded as Base64",
"author": "Marcel Fetten <[email protected]> (https://www.fetten-meier.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Fetten/woff2base64/issues"
},
"homepage": "https://github.com/Fetten/woff2base64#readme",
"main": "./lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"prepublish": "npm run build",
"build": "babel src -d lib",
"serve": "babel -w src -d lib",
"lint": "eslint src",
"mocha": "./node_modules/.bin/mocha --reporter spec --require @babel/register",
"test": "npm run lint && npm run mocha",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"release:patch": "release-it patch --src.tagName='v%s' --changelogCommand='yarn changelog'",
"release:minor": "release-it minor --src.tagName='v%s' --changelogCommand='yarn changelog'",
"release:major": "release-it major --src.tagName='v%s' --changelogCommand='yarn changelog'",
"release:major:alpha": "release-it major --preRelease=alpha --src.tagName='v%s' --changelogCommand='yarn changelog'",
"release:major:beta": "release-it major --preRelease=beta --src.tagName='v%s' --changelogCommand='yarn changelog'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fetten/woff2base64.git"
},
"dependencies": {
"lodash": "^4.17.11"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.2",
"chai": "^4.2.0",
"conventional-changelog-cli": "^2.0.21",
"eslint": "^6.0.0",
"glob": "^7.1.4",
"mocha": "^6.1.4",
"release-it": "^12.3.0"
},
"engines": {
"node": ">=8"
},
"keywords": [
"woff",
"woff2",
"base64",
"css",
"font",
"webfont",
"font-face",
"fontface",
"performance",
"optimization"
]
}