forked from csstools/mdcss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.05 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
{
"name": "mdcss",
"version": "1.5.1",
"description": "Easily create and maintain style guides with CSS comments using Markdown",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"styles",
"styleguides",
"documentation",
"docs",
"notes",
"texts",
"markdown",
"mds",
"examples",
"colors",
"markups",
"sections"
],
"author": "Jonathan Neal <[email protected]>",
"license": "CC0-1.0",
"repository": "jonathantneal/mdcss",
"homepage": "https://github.com/jonathantneal/mdcss",
"bugs": "https://github.com/jonathantneal/mdcss/issues",
"dependencies": {
"fs-extra": "^0.26.5",
"marked": "^0.3.5",
"mdcss-theme-github": "^2.1.0",
"postcss": "^5.0.14"
},
"devDependencies": {
"eslint": "^1.10.3",
"tap-spec": "^4.1.1",
"tape": "^4.4.0"
},
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"tape": "tape test.js | tap-spec",
"test": "npm run lint && npm run tape"
},
"engines": {
"iojs": ">=2.0.0",
"node": ">=0.12.0"
}
}