forked from kekee000/fonteditor-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "fonteditor-core",
"version": "2.1.11",
"description": "fonts (ttf, woff, woff2, eot, svg, otf) parse, write, transform, glyph adjust.",
"keywords": [
"sfnt",
"font",
"editor",
"ttf",
"woff",
"woff2",
"svg",
"eot",
"otf"
],
"homepage": "https://github.com/kekee000/fonteditor-core",
"authors": [
{
"name": "kekee000",
"email": "[email protected]"
},
{
"name": "junmer",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/kekee000/fonteditor-core/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/kekee000/fonteditor-core/raw/master/LICENSE"
}
],
"scripts": {
"precommit": "npm run lint",
"publish:npm": "npm run build && npm publish --registry=https://registry.npmjs.org/",
"test": "npm run test:browser && npm run test:node",
"test:browser": "./node_modules/.bin/mocha --require @babel/register test/spec/*.spec.js test/spec/**/*.spec.js",
"test:node": "npm run build && ./node_modules/mocha/bin/mocha test/node-spec/**/*.spec.js ",
"dev": "webpack-dev-server --open --config ./config/webpack.dev.js",
"build": "babel src --out-dir lib",
"lint": "eslint ./src ./test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{jsx,txs,ts,js,vue}": [
"eslint"
]
},
"repository": {
"type": "git",
"url": "git://github.com/kekee000/fonteditor-core.git"
},
"files": [
"index.d.ts",
"lib",
"src",
"woff2"
],
"main": "./lib/main.js",
"module": "./src/main.js",
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.18.9",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "^4.1.0",
"commander": "^3.0.2",
"css-loader": "^3.2.0",
"eslint": "^7.9.0",
"eslint-plugin-import": "^2.23.4",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"mocha": "^6.2.1",
"pako": "^1.0.10",
"style-loader": "^1.0.0",
"webpack": "^4.41.1",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.3"
}
}