-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
40 lines (40 loc) · 1009 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
39
40
{
"name": "spectra",
"description": "Javascript color manipulation library.",
"version": "0.2.4",
"author": "Aakash Patel <[email protected]>",
"main": "spectra.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/avp/spectra.git"
},
"bugs": {
"url": "https://github.com/avp/spectra/issues"
},
"scripts": {
"test": "grunt travis"
},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-uglify": "^3.2.1",
"grunt-karma": "2.0.0",
"grunt-karma-coveralls": "^2.5.4",
"jasmine-core": "^2.8.0",
"karma": "^1.3.0",
"karma-coffee-preprocessor": "^1.0.0",
"karma-coverage": "^1.0.0",
"karma-html2js-preprocessor": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-requirejs": "^1.0.0",
"karma-script-launcher": "^1.0.0",
"requirejs": "^2.3.2"
},
"files": [
"spectra.js",
"spectra.min.js",
"LICENSE"
]
}