-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.25 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
55
{
"name": "postcss-typography",
"version": "2.0.0-2",
"description": "A postcss plugin for typography.js",
"main": "index.js",
"files": [
"lib",
"index.js"
],
"engines": {
"node": ">=4"
},
"scripts": {
"build-md": "remark . --quiet --frail",
"build": "npm run build-md",
"lint": "xo",
"test-api": "node test/index.js | tap-diff",
"test-coverage": "istanbul cover test/index.js",
"test": "npm run build && npm run lint && npm run test-coverage"
},
"keywords": [
"css",
"typography",
"postcss",
"postcss-plugin"
],
"author": "Jonathan Haines <[email protected]> (http://barrythepenguin.github.io)",
"repository": {
"type": "git",
"url": "https://github.com/barrythepenguin/postcss-typography.git"
},
"bugs": "https://github.com/barrythepenguin/postcss-typography/issues",
"license": "MIT",
"dependencies": {
"postcss": "^6.0.1",
"typography": "^0.15.6"
},
"devDependencies": {
"istanbul": "^0.4.5",
"remark-cli": "^3.0.1",
"remark-preset-wooorm": "^3.0.0",
"tap-diff": "^0.1.1",
"tape": "^4.6.0",
"xo": "^0.19.0"
},
"remarkConfig": {
"output": true,
"plugins": [
"preset-wooorm"
]
},
"xo": {
"esnext": true
}
}