forked from ONode/pixi-textinput
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.46 KB
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
{
"name": "pixi-textinput-v5",
"version": "4.0.0-beta.3",
"description": "Textinput for pixi v5, webpack, typescript",
"main": "dist/pixiTextInput.js",
"module": "dist/pixiTextInput.es.js",
"types": "@types/index.d.ts",
"directories": {
"doc": "docs"
},
"files": [
"dist",
"@types"
],
"scripts": {
"test": "mocha",
"coverage": "nyc mocha",
"build": "rollup -c",
"prepublishOnly": "yarn run build",
"builds-rollup": "rollup -c docs/builds/rollup/rollup.config.js",
"builds-standalone": "cp dist/pixiTextInput.js* docs/",
"builds-typescript": "rollup -c docs/builds/ts/rollup.config.js",
"builds-demo": "rollup -c docs/rollup.config.js",
"builds": "yarn builds-rollup && yarn builds-browserify && yarn builds-standalone && yarn builds-typescript && yarn builds-demo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ONode/pixi-textinput.git"
},
"keywords": [
"PIXI",
"pixi.js",
"textinput",
"custom input",
"rebuild input"
],
"author": "jjHesk Heskeyo",
"license": "MIT",
"bugs": {
"url": "https://github.com/ONode/pixi-textinput/issues"
},
"homepage": "https://github.com/ONode/pixi-textinput#readme",
"peerDependencies": {
"pixi.js": ">=5.0.2"
},
"dependencies": {
"penner": "^0.1.3"
},
"devDependencies": {
"chai": "^4.2.0",
"clicked": "^2.2.1",
"fork-me-github": "^1.2.0",
"highlight.js": "^9.15.8",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"pixi-ease": "^1.3.0",
"pixi.js": "^5.0.4",
"raf": "^3.4.1",
"rollup": "^1.16.2",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.1.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^5.0.0",
"rollup-plugin-typescript": "^1.0.1",
"serve": "^11.0.2",
"settingspanel": "^2.0.0",
"tslib": "^1.10.0",
"typescript": "^3.5.2",
"yy-counter": "^2.1.0",
"yy-fps": "^1.1.0",
"yy-jsdoc-template": "^1.3.0",
"yy-random": "^1.8.0"
}
}