-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.01 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
{
"name": "fontforge",
"version": "0.0.4",
"description": "A Node.js wrapper for fontforge",
"main": "index.js",
"scripts": {
"lint": "eslint '**/*.js'",
"prebuild": "npm run lint",
"build": "babel src --out-dir lib",
"pretest": "npm run build",
"test": "babel-node spec/run.js",
"prepublish": "npm run test"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/sgen/node-fontforge.git"
},
"keywords": [
"fontforge",
"font",
"forge",
"fonts",
"eot",
"ttf"
],
"author": "Samuel Genest <is.genest@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sgen/node-fontforge/issues"
},
"homepage": "https://github.com/sgen/node-fontforge#readme",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.9.0",
"eslint": "^2.13.1",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.9.2",
"jasmine": "^2.4.1",
"mkdirp": "^0.5.1",
"rimraf": "^2.5.2"
}
}