-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.56 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
49
50
51
52
53
54
55
56
{
"name": "@bitty/animate",
"version": "1.1.0",
"description": "Create and manage animation functions with AnimationFrame API.",
"cdn": "dist/animate.umd.js",
"main": "dist/animate.js",
"types": "types/animate.d.ts",
"unpkg": "dist/animate.umd.js",
"module": "dist/animate.esm.js",
"jsdelivr": "dist/animate.umd.js",
"umd:main": "dist/animate.umd.js",
"files": [
"dist/",
"types/"
],
"scripts": {
"lint": "prettier --check \"{src,test}/**/*.ts\"",
"lint:fix": "prettier --write \"{src,test}/**/*.ts\"",
"test": "pnpm run test:transpile && ava",
"test:transpile": "tsc --project ./tsconfig.test.json",
"build": "pnpm run build:transpile && pnpm run build:bundle",
"build:transpile": "tsc -p ./tsconfig.build.json",
"build:bundle": "rollup --config rollup.config.js",
"prepublishOnly": "pnpm run test && pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VitorLuizC/animate.git"
},
"keywords": [
"animation",
"requestanimationframe",
"game-loop",
"gameloop",
"loop",
"interval",
"timeout"
],
"author": {
"url": "https://vitorluizc.github.io/",
"name": "Vitor Luiz Cavalcanti",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/VitorLuizC/animate/issues"
},
"homepage": "https://github.com/VitorLuizC/animate#readme",
"devDependencies": {
"ava": "^4.0.1",
"prettier": "^2.5.1",
"rollup": "^2.63.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.5.4"
}
}