This repository has been archived by the owner on Jun 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
62 lines (62 loc) · 1.6 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
{
"name": "pixi-multistyle-text",
"version": "0.10.0",
"description": "Multi-Style Text for pixi.js",
"source": "src/pixi-multistyle-text.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/tleunen/pixi-multistyle-text.git"
},
"bugs": {
"url": "https://github.com/tleunen/pixi-multistyle-text/issues"
},
"homepage": "https://github.com/tleunen/pixi-multistyle-text",
"keywords": [
"pixi",
"pixi.js",
"text",
"multistyle",
"multi style",
"style",
"canvas",
"webgl",
"graphics",
"render",
"2d"
],
"author": "Tommy Leunen <[email protected]> (http://tommyleunen.com/)",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"argos-cli": "0.1.3",
"fs-extra": "^8.1.0",
"happo": "^5.0.0",
"happo-target-firefox": "^5.1.2",
"microbundle": "^0.11.0",
"opener": "^1.5.1",
"pixi.js-legacy": "^5.2.1",
"standard-version": "^7.1.0",
"typescript": "^3.8.2"
},
"peerDependencies": {
"pixi.js": "^5.2.0"
},
"scripts": {
"demo": "npm run build && opener demo/index.html",
"dev": "microbundle watch",
"build": "microbundle --name MultiStyleText",
"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"
}
}