forked from pixijs-userland/html-text
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.8 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
{
"name": "@pixi/text-html",
"version": "1.0.1",
"description": "Multi-Style Text Rendering Plugin for PixiJS",
"main": "dist/html-text.cjs.js",
"module": "dist/html-text.es.js",
"bundle": "dist/html-text.js",
"types": "index.d.ts",
"scripts": {
"serve": "http-server . -o demo",
"watch": "rollup -cw",
"clean": "rimraf dist/*",
"build": "cross-env NODE_ENV=production rollup -c",
"build:dev": "rollup -c",
"demo": "run-p watch serve",
"lint": "eslint src",
"test": "run-s lint build",
"postversion": "git push && git push --tags",
"prepublish": "run-s lint clean build",
"docs": "jsdoc -c jsdoc.json -R README.md",
"predeploy": "run-s build docs",
"deploy": "gh-pages -d . -s \"{demo,docs,dist}/**\""
},
"homepage": "https://pixijs.io/html-text/docs/",
"bugs": "https://github.com/pixijs/html-text/issues",
"repository": {
"type": "git",
"url": "https://github.com/pixijs/html-text.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [],
"files": [
"dist",
"index.d.ts"
],
"author": "Matt Karl <[email protected]>",
"license": "MIT",
"peerDependencies": {
"@pixi/core": "^5.0.0",
"@pixi/math": "^5.0.0",
"@pixi/settings": "^5.0.0",
"@pixi/sprite": "^5.0.0",
"@pixi/text": "^5.0.0",
"@pixi/utils": "^5.0.0"
},
"devDependencies": {
"@pixi/eslint-config": "^1.0.1",
"@pixi/jsdoc-template": "^2.6.0",
"@typescript-eslint/parser": "^2.26.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"gh-pages": "^2.2.0",
"http-server": "^0.12.1",
"jsdoc": "^3.6.3",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.3.3",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-terser": "^5.3.0",
"typescript": "^3.8.3"
},
"dependencies": {}
}