-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 938 Bytes
/
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
{
"name": "2d-css-matrix-parse",
"version": "1.0.0",
"description": "Module that parse a 2D css transform matrix into a 3x3 array. Also the module allow you get the matrix array from a specified element",
"main": "index.js",
"scripts": {
"test": "node test.js"
},
"keywords": [
"animations",
"2d",
"matrix",
"matrix2d",
"3x3",
"parse",
"css-parse",
"transformation",
"transform",
"scale",
"translate"
],
"author": "Iran Reyes <iranreyesfleitas@gmail.com> (http://www.iranreyes.com)",
"license": "MIT",
"dependencies": {
"get-style-property": "^0.1.1"
},
"devDependencies": {
"tape": "^4.2.2"
},
"repository": {
"type": "git",
"url": "git://github.com/iranreyes/2d-css-matrix-parse.git"
},
"homepage": "https://github.com/iranreyes/2d-css-matrix-parse",
"bugs": {
"url": "https://github.com/iranreyes/2d-css-matrix-parse/issues"
}
}