-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.24 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": "gamestats.js",
"version": "1.0.7",
"description": "Javascript performance monitor / game stats library inspired by Unity's graphy",
"main": "build/gamestats.js",
"types": "src/index.d.ts",
"module": "build/gamestats.module.js",
"scripts": {
"build": "rollup -c",
"watch": "npm-run-all --parallel watch:*",
"watch:rollup": "rollup -cw",
"watch:server": "http-server ."
},
"devDependencies": {
"@babel/core": "^7.12.17",
"@babel/preset-env": "^7.12.17",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"http-server": "^0.12.3",
"npm-run-all": "^4.1.5",
"rollup": "^2.39.0",
"rollup-plugin-terser": "^7.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ErikSom/gamestats.git"
},
"keywords": [
"game",
"stats",
"performance",
"fps"
],
"author": "Erik Sombroek",
"license": "MIT",
"bugs": {
"url": "https://github.com/ErikSom/gamestats/issues"
},
"homepage": "https://github.com/ErikSom/gamestats#readme",
"dependencies": {
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/runtime": "^7.14.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0"
}
}