forked from playcanvas/playcanvas-tween
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 847 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
{
"name": "playcanvas-tween",
"version": "1.0.0",
"author": "PlayCanvas <[email protected]>",
"homepage": "https://playcanvas.com",
"description": "Tween library for PlayCanvas engine",
"keywords": [
"playcanvas",
"webgl",
"tween",
"animation"
],
"license": "MIT",
"main": "tween.js",
"bugs": {
"url": "https://github.com/playcanvas/playcanvas-tween/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/playcanvas/playcanvas-tween.git"
},
"eslintConfig": {
"extends": "@playcanvas/eslint-config",
"globals": {
"pc": "readonly"
}
},
"devDependencies": {
"@playcanvas/eslint-config": "^1.0.16",
"eslint": "^8.7.0"
},
"scripts": {
"lint": "eslint --ext .js tween.js",
"test": "echo \"Error: no test specified\" && exit 1"
}
}