forked from mrdoob/stats.js
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1003 Bytes
/
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
{
"name": "@drecom/stats.js",
"version": "1.0.0",
"description": "JavaScript Performance Monitor",
"main": "build/stats.js",
"types": "src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/drecom/stats.js.git"
},
"directories": {
"example": "examples"
},
"files": [
"build",
"src"
],
"scripts": {
"build": "rollup -c && uglifyjs build/stats.js -o build/stats.min.js -cm -b beautify=false,preamble='\"// @drecom/stats.js - http://github.com/drecom/stats.js\"'"
},
"keywords": [
"performance",
"fps",
"stats"
],
"author": "Drecom Co.,Ltd.",
"license": "MIT",
"bugs": {
"url": "https://github.com/drecom/stats.js/issues"
},
"homepage": "https://github.com/drecom/stats.js",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"rollup": "0.55.1",
"rollup-plugin-babel": "^3.0.3",
"uglify-js": "^3.3.9"
}
}