-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 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
{
"name": "colorful-background-css-generator",
"description": "A Colorful CSS Gradient Background Generator.",
"version": "1.0.0",
"homepage": "https://github.com/webcore-it/colorful-background-css-generator",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/webcore-it/colorful-background-css-generator"
},
"keywords": [
"color",
"CSS",
"background",
"gradient",
"generator"
],
"author": {
"name": "Thomas Zanthoff",
"url": "http://www.webcore-it.com",
"twitter": "@WebCoreIT",
"twitter-url": "https://twitter.com/WebCoreIT"
},
"main": "./index.js",
"directories": {},
"engines": {
"node": "6"
},
"scripts": {
"build": "grunt",
"build:publish": "npm test && grunt",
"test": "jest",
"prepublish": "npm run build:publish"
},
"devDependencies": {
"grunt": "~1.0.2",
"grunt-contrib-concat": "~1.0.1",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-jshint": "~1.1.0",
"grunt-contrib-uglify": "~3.3.0",
"grunt-contrib-watch": "~1.1.0",
"grunt-strip-code": "^1.0.6",
"jest": "^23.1.0"
}
}