forked from tleunen/pixi-multistyle-text
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.27 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
{
"name": "@plainblack/pixi-multistyle-text",
"version": "1.0.0",
"description": "Multi-Style Text for pixi.js",
"source": "src/index.ts",
"main": "dist/pixi-multistyle-text.js",
"umd:main": "dist/pixi-multistyle-text.umd.js",
"module": "dist/pixi-multistyle-text.m.js",
"types": "dist/pixi-multistyle-text.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git://github.com/plainblack/pixi-multistyle-text.git"
},
"bugs": {
"url": "https://github.com/plainblack/pixi-multistyle-text/issues"
},
"homepage": "https://github.com/plainblack/pixi-multistyle-text",
"keywords": [
"pixi",
"pixi.js",
"text",
"multistyle",
"multi style",
"style",
"canvas",
"webgl",
"graphics",
"render",
"2d"
],
"author": "JT Smith, Mims Wright, Tommy Leunen <[email protected]> (http://tommyleunen.com/)",
"license": "MIT",
"dependencies": {
"husky-run": "^0.0.0"
},
"devDependencies": {
"@types/pixi.js": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"argos-cli": "0.3.3",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"fs-extra": "^9.1.0",
"happo": "^5.0.0",
"happo-target-firefox": "^5.1.2",
"husky": "^5.2.0",
"lint-staged": ">=10",
"microbundle": "^0.13.0",
"opener": "^1.5.1",
"pixi.js-legacy": "^5.3.8",
"prettier": "^2.2.1",
"standard-version": "^9.1.1",
"typescript": "^4.2.3"
},
"peerDependencies": {
"pixi.js": "^5.3.8"
},
"scripts": {
"demo": "npm run build && opener demo/index.html",
"dev": "microbundle watch --name MultiStyleText --globals 'pixi.js'=PIXI",
"build": "microbundle --name MultiStyleText --globals 'pixi.js'=PIXI",
"prepublishOnly": "npm run build",
"release": "standard-version",
"snapshot": "rm -rf happo-snapshots && happo run",
"happo": "./scripts/happo-ci.sh",
"test": "npm run happo",
"test:local": "happo run",
"lint": "prettier -l ./**/*.{ts,js,tsx,jsx,json,html,css,md}",
"lint:fix": "npm run lint --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}