-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"name": "msdf-generator",
"version": "0.0.7",
"description": "msdf generator in node.js",
"main": "lib/index.js",
"module": "lib/index.mjs",
"files": [
"lib"
],
"scripts": {
"build": "npm run rollup:build",
"rollup:build": "rollup -c",
"rollup:watch": "npm run rollup:build -- -w",
"lint": "eslint ./src/**",
"lint:fix": "npm run lint -- --fix",
"test": "npm run build && mocha",
"example": "node --experimental-modules example/main.mjs",
"prerelease": "npm run test && can-npm-publish --verbose",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/studioTeaTwo/node-msdf-generator.git"
},
"keywords": [
"msdf",
"aframe",
"font"
],
"author": "teatwo <studioTeaTwo@gmail.com> (https://studioteatwo.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/studioTeaTwo/node-msdf-generator/issues"
},
"homepage": "https://github.com/studioTeaTwo/node-msdf-generator#readme",
"dependencies": {
"minimist": "^1.2.5",
"msdf-bmfont-xml": "^2.6.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"can-npm-publish": "^1.3.6",
"eslint": "^7.21.0",
"fs-extra": "^9.1.0",
"mocha": "^8.3.0",
"rollup": "^2.40.0",
"standard-version": "^9.3.0"
}
}