-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.23 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
{
"name": "framerate-optimizer",
"version": "0.1.2",
"description": "Library for tracking and iteratively improving framerate over time.",
"main": "src/Optimizer.js",
"type": "module",
"keywords": [
"javascript",
"performance",
"process",
"browser",
"framerate",
"optimize",
"tweak",
"fps",
"iterative",
"quality",
"work"
],
"files": [
"src/*",
"umd/*"
],
"scripts": {
"build": "rollup -i ./src/Optimizer.js -o ./umd/Optimizer.js -f umd -n Optimizer",
"lint": "eslint ./src/*.js",
"test": "jest --coverage",
"coverage": "opn coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gkjohnson/js-framerate-optimizer.git"
},
"author": "Garrett Johnson <garrett.kjohnson@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gkjohnson/js-framerate-optimizer/issues"
},
"homepage": "https://github.com/gkjohnson/js-framerate-optimizer#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"babel-jest": "^25.4.0",
"eslint": "^5.15.3",
"jest": "^25.4.0",
"jest-cli": "^25.4.0",
"opn-cli": "^3.1.0",
"rollup": "^0.66.6"
}
}