-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 821 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 821 Bytes
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
{
"name": "@degjs/easing",
"version": "2.0.2",
"description": "Animation easing functions",
"keywords": [
"easing",
"animation",
"DEGJS"
],
"author": {
"name": "Ryan Heap",
"email": "rheap@degdigital.com"
},
"files": [
"src"
],
"main": "src/easing.js",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DEGJS/easing.git"
},
"bugs": "https://github.com/DEGJS/easing/issues",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.0.0",
"jasmine": "^3.2.0"
},
"scripts": {
"test": "jasmine"
},
"dependencies": {}
}