forked from pixelspark/gradient-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "gradient-parser",
"version": "1.0.0",
"description": "Parse CSS3 gradient definitions and return an AST.",
"author": {
"name": "Rafael Carcicio",
"email": "[email protected]",
"url": "https://github.com/rafaelcaricio"
},
"homepage": "https://github.com/rafaelcaricio/gradient-parser",
"bugs": {
"url": "https://github.com/rafaelcaricio/gradient-parser/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://rafaelcaricio.mit-license.org"
}
],
"maintainers": [],
"contributors": [],
"repository": {
"type": "git",
"url": "git://github.com/rafaelcaricio/gradient-parser.git"
},
"main": "build/node.js",
"scripts": {
"test": "grunt"
},
"keywords": [
"library",
"css3",
"parser"
],
"dependencies": {},
"devDependencies": {
"grunt": "*",
"grunt-browserify": "^3.0.1",
"grunt-complexity": "*",
"grunt-contrib-concat": "^0.5.0",
"grunt-contrib-uglify": "^0.5.1",
"grunt-mocha-test": "^0.11.0",
"mocha": "*"
},
"engines": {
"node": ">=0.10.0"
}
}