-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.44 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
52
53
{
"name": "demosaic",
"version": "1.0.0",
"description": "Bayer demosaic of raw images.",
"keywords": [
"demosaic",
"raw",
"bayer"
],
"repository": {
"type": "git",
"url": "https://github.com/BryceCicada/demosaic.git"
},
"homepage": "https://github.com/BryceCicada/demosaic",
"bugs": {
"url": "https://github.com/BryceCicada/demosaic/issues"
},
"main": "Demosaic.js",
"scripts": {
"coverage": "istanbul cover _mocha -- -R spec test/unit",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"test": "grunt jshint && jenkins-mocha --cobertura test/unit/* && cucumberjs test",
"benchmark": "node test/benchmark/benchmark.js"
},
"author": "Christopher Nix",
"license": "MIT",
"dependencies": {
"lodash.merge": "^4.6.0"
},
"devDependencies": {
"benchmark": "^2.1.4",
"canvas": "^1.6.5",
"chai": "^4.0.2",
"coveralls": "^2.13.1",
"cucumber": "^2.3.1",
"euclidean-distance": "^1.0.0",
"flatmap": "0.0.3",
"grunt": "^1.0.1",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-jshint": "^1.1.0",
"istanbul": "^0.4.5",
"jenkins-mocha": "^2.6.0",
"jshint-jenkins-checkstyle-reporter": "^0.1.2",
"jshint-stylish": "^2.2.1",
"lodash.defaults": "^4.2.0",
"lodash.range": "^3.2.0",
"lodash.sum": "^4.0.2",
"lodash.zip": "^4.2.0",
"lodash.zipwith": "^4.2.0",
"mocha": "^3.4.2",
"sharp": "^0.18.1"
}
}