-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.67 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
57
58
59
60
61
62
63
64
{
"name": "split-ease",
"version": "1.0.2",
"description": "JavaScript easing/interpolation function with infinitely independently variable in/out timing and curvature",
"files": [
"dist/*"
],
"keywords": [
"ease",
"easing",
"animation",
"interpolation",
"penner",
"curve",
"equation",
"algorithm",
"javascript"
],
"homepage": "https://split-ease.netlify.com/",
"repository": {
"type": "git",
"url": "https://github.com/lunelson/split-ease.git"
},
"bugs": "https://github.com/lunelson/split-ease/issues",
"license": "BSD-3-Clause",
"author": "Lu Nelson <[email protected]> (http://lunelson.xyz/)",
"esnext": "src/split-ease.js",
"source": "src/split-ease.js",
"main": "dist/split-ease.js",
"module": "dist/split-ease.mjs",
"jsnext:main": "dist/split-ease.mjs",
"umd:main": "dist/split-ease.umd.js",
"unpkg": "dist/split-ease.umd.js",
"scripts": {
"bundle": "npx microbundle --name=SplitEase",
"publish": "npx release-it",
"start": "penny serve web",
"build": "penny build web temp",
"test": "jest"
},
"devDependencies": {
"@lunelson/dogfood": "^1.0.2",
"@types/jest": "^24.0.13",
"eases": "^1.0.8",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-ava": "^6.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jest": "25.3.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-vue": "^5.2.2",
"gsap": "^2.1.3",
"input-range-scss": "^1.5.1",
"jest": "27.4.5",
"purgecss": "^1.3.0",
"tiny-throttle": "^1.0.1"
},
"browserslist": ">1%",
"release-it": {
"github": {
"release": true
}
}
}