forked from yordan-kanchelov/PIXI.TextInput
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.49 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
{
"name": "pixi-text-input",
"version": "2.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Mwni/PIXI.TextInput.git"
},
"keywords": [
"pixi.js",
"text",
"input"
],
"author": "Mwni",
"license": "MIT",
"contributors": [
"Yordan Kanchelov <[email protected]> (https://github.com/jkanchelov)"
],
"bugs": {
"url": "https://github.com/Mwni/PIXI.TextInput/issues"
},
"homepage": "https://github.com/Mwni/PIXI.TextInput#readme",
"scripts": {
"prepare": "npm run build",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"build:watch": "npm run build && babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline --watch"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"typescript": "^3.0.3"
},
"dependencies": {
"pixi.js": "^5.0.3"
}
}