-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.46 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.46 KB
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
{
"name": "make-face",
"version": "0.0.4",
"description": "Convert font files into CSS @font-face declarations with embedded Base64 data",
"keywords": [
"css",
"font",
"face",
"@font-face",
"encode",
"base64",
"embed",
"otf",
"ttf",
"eot",
"svg",
"woff",
"woff2"
],
"main": "./index.js",
"scripts": {
"eslint": "eslint ./lib ./log ./constants"
},
"author": {
"name": "Jonathan Perry for Sequence Media Limited",
"email": "sequencemedia@sequencemedia.net",
"url": "http://sequencemedia.net"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rma-consulting/make-face.git"
},
"license": "UNLICENSED",
"dependencies": {
"chalk": "^1.1.3",
"commander": "^2.9.0",
"fs-extra": "^0.30.0",
"glob-all": "^3.1.0",
"mime": "^1.3.4",
"sacred-fs": "^0.0.4"
},
"devDependencies": {
"babel-eslint": "^6.1.0",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-standard": "^1.3.2",
"standard": "^7.1.2"
},
"peerDependencies": {
"babel-core": "^6.10.4",
"babel-plugin-transform-class-properties": "^6.9.1",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-stage-1": "^6.3.13",
"babel-register": "^6.9.0",
"babel-runtime": "^6.9.2"
}
}