-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
47
48
{
"name": "powertrain",
"version": "2.0.0",
"description": "A lightweight game loop written to prioritize updates and fill in with extra renders.",
"main": "dist/index.js",
"scripts": {
"test": " ./node_modules/.bin/mocha --require @babel/register --reporter=nyan",
"build": "babel src --out-dir dist",
"prepublish": "npm run build"
},
"engines": {
"node": ">=8.5.0"
},
"repository": {
"type": "git",
"url": "github.com/limeandcoconut/Powertrain"
},
"keywords": [
"engine",
"raf",
"loop",
"update",
"render",
"game"
],
"author": {
"name": "Jacob Smith",
"email": "[email protected]",
"url": "https://jacobsmith.tech"
},
"license": "MIT",
"dependencies": {
"raf": "^3.4.1"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/register": "^7.13.8",
"chai": "^4.3.3",
"core-js": "^3.9.1",
"eslint": "^7.21.0",
"eslint-config-limeandcoconut": "^4.0.0",
"mocha": "^8.3.1"
}
}