-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "gm-easing",
"description": "Fluent easing function provider.",
"url": "http://charlottegore.github.io",
"keywords": [
"easing",
"animation",
"css",
"css-transition",
"bezier curves",
"math",
"client",
"browser"
],
"author": "Charlotte Gore <[email protected]>",
"dependencies": {
"gm-bezier": "1.4.0",
"bindpolyfill": "0.0.0"
},
"main": "index.js",
"version": "1.4.4",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/charlottegore/easing.git"
},
"browser": {
"bezier": "gm-bezier"
},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-browserify": "~1.3.0",
"grunt-mocha-test": "~0.11.0",
"grunt-mocha-phantomjs": "~0.3.0",
"grunt-contrib-jshint": "~0.6.4",
"grunt-contrib-watch": "~0.5.3",
"chai": "~1.9.0",
"mocha": "~1.17.1"
},
"testling": {
"harness": "mocha-bdd",
"files": "test/test.js",
"browsers": [
"ie8",
"ie9",
"ie10",
"ie11",
"ff/latest",
"ff/nightly",
"chrome/latest",
"chrome/canary",
"opera/latest",
"opera/next",
"safari/latest"
]
}
}