-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (48 loc) · 996 Bytes
/
package.json
File metadata and controls
49 lines (48 loc) · 996 Bytes
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
{
"author": "Daniil Gitelson",
"maintainers": [
{
"name": "daniil",
"email": "dg@qbaka.com"
}
],
"homepage": "https://github.com/qbaka/staticcss",
"name": "staticcss",
"keywords": [
"css",
"html",
"mail",
"email"
],
"licenses": [
{
"type": "MIT",
"url": "http://github.com/qbaka/staticcss/blob/master/LICENSE"
}
],
"description": "Module that statically applies css to html and inlines all styles (full CSS3 support), useful for email",
"version": "1.0.1",
"repository": {
"type": "git",
"url": "https://github.com/qbaka/staticcss.git"
},
"main": "./lib/index",
"bin": {
"cssapply": "./bin/cssapply"
},
"dependencies": {
"css-parse": ">= 1.7.0",
"htmlparser2": ">= 3.4.0",
"optimist": "0.6.*"
},
"scripts": {
"test": "node_modules/.bin/mocha"
},
"devDependencies": {
"mocha": ">= 1.17.0"
},
"optionalDependencies": {},
"engines": {
"node": ">=0.6.0"
}
}