-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathpackage.json
54 lines (54 loc) · 1.17 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": "inline-css",
"version": "2.6.1",
"description": "Inline css into an html file.",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"cheerio": "^0.22.0",
"css-rules": "^1.0.6",
"extend": "^3.0.2",
"extract-css": "^1.5.0",
"flat-util": "^1.0.0",
"object.pick": "^1.3.0",
"slick": "^1.12.2",
"specificity": "^0.4.1"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"coveralls": "^3.0.9",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-mocha": "^7.0.2",
"lerna": "^3.20.2",
"mocha": "^7.0.0",
"nyc": "^15.0.0",
"should": "^13.2.3",
"vinyl": "^2.2.0"
},
"engines": {
"node": ">=8"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"test": "mocha",
"lint": "gulp lint",
"coverage": "nyc npm test && nyc report",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"files": [
"index.js",
"lib/"
],
"repository": "jonkemp/inline-css",
"keywords": [
"inline",
"css",
"html",
"email"
],
"author": "Jonathan Kemp <kempdogg@gmail.com> (http://jonkemp.com/)",
"license": "MIT"
}