-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1 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
{
"name": "@sifrr/animate",
"description": "Sifrr animation library. Animate any mutable object's property(s) in JS using requestAnimationFrame.",
"version": "0.0.3",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sifrr/sifrr-animate.git"
},
"keywords": [
"sifrr",
"animate",
"anime",
"raf"
],
"author": "Sifrr",
"bugs": {
"url": "https://github.com/sifrr/sifrr-animate/issues"
},
"type": "module",
"main": "dist/sifrr.animate.cjs.js",
"module": "src/animate.js",
"browser": "dist/sifrr.animate.js",
"types": "dist/types/animate.d.ts",
"homepage": "https://github.com/sifrr/sifrr-animate",
"browserslist": [
"chrome >= 55",
"safari >= 10.1",
"opera >= 42",
"firefox >= 63"
],
"scripts": {
"test": "rm -rf ./.nyc_output; ./scripts/test/runall",
"test-server": "node ./scripts/test/run.js ./ -s",
"build": "./node_modules/.bin/rollup -c"
},
"devDependencies": {
"@sifrr/dev": "^0.0.44"
}
}