forked from mimshwright/pixi-tagged-text
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.1 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
{
"name": "pixi-rich-text",
"version": "2.0.1",
"description": "RichText for pixi.js",
"author": "Mims Wright, JT Smith, tleunen",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/mimshwright/pixi-richt-text.git"
},
"bugs": {
"url": "https://github.com/mimshwright/pixi-rich-text/issues"
},
"homepage": "https://github.com/mimshwright/pixi-rich-text",
"source": "src/index.ts",
"main": "dist/pixi-rich-text.js",
"umd:main": "dist/pixi-rich-text.umd.js",
"module": "dist/pixi-rich-text.m.js",
"types": "dist/pixi-rich-text.d.ts",
"files": [
"dist"
],
"keywords": [
"pixi",
"pixi.js",
"text",
"multistyle",
"multi style",
"style",
"canvas",
"webgl",
"graphics",
"render",
"2d"
],
"peerDependencies": {
"pixi.js": "^5.3.8"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"argos-cli": "0.3.3",
"canvas": "^2.7.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"fs-extra": "^9.1.0",
"http-server": "^0.12.3",
"husky": "^5.2.0",
"install-peers-cli": "^2.2.0",
"jest": "^26.6.3",
"microbundle": "^0.13.0",
"opener": "^1.5.1",
"prettier": "^2.2.1",
"standard-version": "^9.1.1",
"ts-jest": "^26.5.3",
"typescript": "^4.2.3"
},
"scripts": {
"demo": "npm run build && http-server . & opener http://localhost:8080/demo/index.html",
"dev": "microbundle watch --name RichText --globals 'pixi.js'=PIXI",
"build": "microbundle --name RichText --globals 'pixi.js'=PIXI",
"prepublishOnly": "npm run build",
"release": "standard-version",
"test": "jest",
"test:watch": "test --watch",
"prettier": "prettier -l ./**/*.{ts,js,json,html,css,md}",
"prettier:fix": "npm run prettier --write",
"eslint": "eslint ./src/**/*.ts",
"lint": "npm run prettier && npm run eslint",
"prepare": "install-peers && husky install",
"pre-commit": "npm run lint && npm run test"
}
}