-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
44 lines (44 loc) · 1.28 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
{
"name": "huozi",
"version": "1.1.1",
"description": "A simple typography engine for CJK languages, especially designed for game rich-text.",
"main": "./dist/index.js",
"scripts": {
"dev": "webpack-dev-server --config webpack.config.example.js --hot --host 0.0.0.0 --port 8000 --devtool source-map",
"publish-demo": "webpack --config webpack.config.example.js -p",
"prebuild": "rm -rf ./dist",
"build": "babel . --ignore node_modules,example --out-dir dist",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Icemic/huozi.js.git"
},
"keywords": [
"typography",
"wordwrap",
"rich-text",
"CJK",
"chinese",
"japanese",
"korean",
"canvas",
"game"
],
"author": "Icemic Jia <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Icemic/huozi.js/issues"
},
"homepage": "https://github.com/Icemic/huozi.js#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.0",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.3"
}
}