-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.3 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
{
"name": "@maizzle/email-normalize",
"version": "1.0.0",
"description": "CSS resets for default styles in email clients",
"license": "MIT",
"repository": "maizzle/email-normalize",
"bugs": "https://github.com/maizzle/email-normalize/issues",
"contributors": [
{
"name": "Jay Oram",
"url": "https://github.com/JayOram"
},
{
"name": "Cosmin Popovici",
"url": "https://github.com/cossssmin"
}
],
"scripts": {
"build": "npm run style && postcss src/css/index.css -o email-normalize.css",
"style": "stylelint src/css/**/*.css",
"test": "npm run style && ava",
"release": "np"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"main": "src/index.js",
"files": [
"src",
"email-normalize.css"
],
"style": "email-normalize.css",
"keywords": [
"normalize",
"css",
"reset",
"email",
"html-emails",
"style"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"ava": "^3.15.0",
"np": "*",
"postcss": "^8.3.5",
"postcss-cli": "^8.3.1",
"postcss-import": "^14.0.2",
"stylelint": "^13.0.0"
}
}