forked from dfrankland/node-fonttools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.3 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.3 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
{
"name": "fonttools",
"version": "1.0.12",
"description": "Native bindings to `fonttools` to decompile and compile fonts.",
"repository": "https://github.com/dfrankland/node-fonttools.git",
"author": "Dylan Frankland <dylan@frankland.io>",
"license": "MIT",
"main": "dist/index.js",
"files": [
"binding.gyp",
"src/fonttools.cc",
"fonttools",
"dist"
],
"scripts": {
"prebuild:addons": "node-gyp configure",
"build:addons": "node-gyp build",
"prebuild": "npm run build:addons",
"build": "babel-node ./node_modules/.bin/webpack",
"prepublishOnly": "npm run build",
"pretest": "npm run build",
"test": "tape ./test/index.js | tap-spec"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-babili": "^0.0.10",
"babel-preset-env": "^1.1.8",
"babel-preset-stage-0": "^6.22.0",
"source-map-support": "^0.4.11",
"tap-spec": "^4.1.1",
"tape": "^4.6.3",
"uglify-js": "^2.7.5",
"uglifyjs-webpack-plugin": "^0.1.3",
"webpack": "^2.2.1"
},
"dependencies": {
"node-gyp": "^3.5.0"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
],
"stage-0"
]
}
}