-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
51 lines (51 loc) · 1.11 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
{
"name": "chromath",
"version": "0.0.7",
"description": "JavaScript color conversion and manipulation functions",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/jfsiii/chromath.git"
},
"homepage": "https://github.com/jfsiii/chromath",
"keywords": [
"color",
"math",
"rgb",
"hsl",
"hsv",
"hsb",
"hex",
"palette",
"gradient",
"convert",
"conversion"
],
"author": {
"name": "John Schulz",
"url": "http://JFSIII.org"
},
"scripts": {
"test": "tap test/*.js",
"build": "browserify -s Chromath -e index.js > dist/chromath.js; uglifyjs dist/chromath.js -c -m -o dist/chromath.min.js"
},
"devDependencies": {
"tap": "*",
"quickcheck": "git://github.com/jfsiii/node-quickcheck.git",
"uglifyjs": "^2.3.6",
"browserify": "^3.44.2"
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/6..latest",
"chrome/4..latest",
"firefox/3..latest",
"safari/4..latest",
"opera/11..latest",
"iphone/6..latest",
"ipad/6..latest"
]
},
"license": "MIT"
}