-
Notifications
You must be signed in to change notification settings - Fork 137
/
package.json
42 lines (42 loc) · 1.17 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
{
"name": "bezier-easing",
"version": "2.1.0",
"description": "BezierEasing provides Cubic Bezier Curve easing which generalizes easing functions exactly like in CSS Transitions.",
"keywords": [
"cubic-bezier",
"bezier",
"easing",
"interpolation",
"animation",
"timing",
"timing-function"
],
"author": "Gaëtan Renaudeau <renaudeau.gaetan@gmail.com>",
"main": "src/index.js",
"types": "src/index.d.ts",
"files": [
"src",
"dist"
],
"license": "MIT",
"scripts": {
"test": "mocha",
"benchmark": "node benchmark.js",
"visual": "budo visual-demo.js",
"prepublish": "rm -rf dist && mkdir -p dist && npm run build-dev && npm run build-prod",
"build-dev": "browserify --standalone BezierEasing src/index.js > dist/bezier-easing.js",
"build-prod": "browserify --standalone BezierEasing src/index.js | uglifyjs -cm > dist/bezier-easing.min.js"
},
"devDependencies": {
"assert": "^2.0.0",
"benchmark": "^2.1.0",
"browserify": "^17.0.0",
"budo": "^11.6.4",
"mocha": "^8.2.1",
"uglify-js": "^3.12.3"
},
"repository": {
"type": "git",
"url": "git://github.com/gre/bezier-easing.git"
}
}