forked from parlr/ruby-font-creator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.57 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
{
"name": "hanzi-pinyin-font",
"description": "Project to create a Chinese font displaying Hanzi (汉字) characters followed by transliteration/pronunciation (Pīnyīn)",
"main": "index.js",
"author": [
"Édouard Lopez",
"Hugo Lopez"
],
"license": "MIT",
"scripts": {
"build": "node --max_old_space_size=8192 --optimize_for_size --stack_size=4096 --require babel-core/register ./index.js --config=./src/config/catus.bottom.js --data=src/data-small.json",
"test": "ava test --fail-fast --verbose",
"precommit": "./node_modules/.bin/prettier-eslint --write '**/*.js'",
"prepush": "npm test"
},
"dependencies": {
"jsdom": "9.12.x",
"jsonfile": "2.4.x",
"node-tsv-json": "^0.2.1",
"text-to-svg": "^3.1.0",
"webfont": "^7.1.1",
"yargs": "^7.0.2"
},
"devDependencies": {
"ava": "0.25.x",
"babel-core": "6.26.x",
"babel-loader": "7.1.x",
"babel-plugin-transform-runtime": "6.23.x",
"babel-preset-es2015": "6.24.x",
"babel-preset-stage-2": "6.24.x",
"babel-runtime": "6.26.x",
"del": "3.0.x",
"eslint": "4.18.x",
"eslint-config-airbnb-base": "12.1.x",
"eslint-config-prettier": "2.9.x",
"eslint-plugin-import": "2.9.x",
"husky": "0.14.x",
"prettier-eslint-cli": "4.7.x"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
},
"babel": {
"presets": [
"es2015",
"stage-2"
],
"plugins": [
"transform-runtime"
],
"comments": false
},
"prettier": {
"semi": false,
"singleQuote": true
},
"version": "1.1.2"
}