-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
54 lines (54 loc) · 1.39 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
54
{
"name": "csscritic",
"title": "CSS Critic",
"version": "2.0.0",
"description": "A lightweight tool for regression testing of Cascading Style Sheets.",
"keywords": [
"CSS",
"regression",
"test"
],
"homepage": "http://www.github.com/cburgmer/csscritic",
"license": "MIT",
"author": {
"name": "Christoph Burgmer",
"email": "christoph.burgmer@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/cburgmer/csscritic.git"
},
"dependencies": {
"imagediff": "git://github.com/HumbleSoftware/js-imagediff.git#5edce005fe",
"rasterizehtml": "^1.3.1"
},
"devDependencies": {
"cssify": "~1.0.2",
"ejs": "^3.1.6",
"grunt": "^1.4.1",
"grunt-browserify": "^6.0.0",
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-concat": "^2.0.0",
"grunt-contrib-connect": "^3.0.0",
"grunt-contrib-csslint": "^2.0.0",
"grunt-contrib-cssmin": "^4.0.0",
"grunt-contrib-jasmine": "^3.0.0",
"grunt-contrib-jshint": "^3.1.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-shell": "^3.0.1",
"grunt-umd": "^3.0.0",
"jasmine-core": "^3.8.0",
"jasmine-jquery": "~2.1.1",
"jquery": "^3.6.0",
"minifyify": "^7.3.5",
"prettier": "^2.5.1",
"puppeteer": "^13.1.1"
},
"prettier": {
"tabWidth": 4
},
"scripts": {
"test": "grunt && prettier -c test src Gruntfile.js"
}
}