This repository has been archived by the owner on Apr 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.44 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
{
"name": "pixi-fps",
"version": "2.0.1",
"description": "FPS counter for pixi.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/jkanchelov/pixi-fps.git"
},
"keywords": [
"fps",
"counter",
"pixi.js"
],
"author": "jkanchelov",
"license": "MIT",
"bugs": {
"url": "https://github.com/jkanchelov/pixi-fps/issues"
},
"homepage": "https://github.com/jkanchelov/pixi-fps#readme",
"scripts": {
"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",
"prepublish": "npm run build"
},
"devDependencies": {
"pixi.js": "^5.0.0-rc",
"@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"
},
"peerDependencies": {
"pixi.js": "^5.0.0-rc"
}
}