Skip to content

Commit e3219d4

Browse files
committed
Initial commit
0 parents  commit e3219d4

File tree

3 files changed

+560
-0
lines changed

3 files changed

+560
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.DS_Store
2+
*.log
3+
node_modules/

package.json

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"private": true,
3+
"version": "0.0.0",
4+
"description": "extensible abstract syntax tree",
5+
"license": "cc-by-4.0",
6+
"keywords": [],
7+
"repository": "syntax-tree/xast",
8+
"bugs": "https://github.com/syntax-tree/xast/issues",
9+
"author": "Titus Wormer <[email protected]> (wooorm.com)",
10+
"contributors": [
11+
"Titus Wormer <[email protected]> (wooorm.com)"
12+
],
13+
"devDependencies": {
14+
"remark-cli": "^7.0.0",
15+
"remark-preset-wooorm": "^6.0.0"
16+
},
17+
"scripts": {
18+
"format": "remark . -qfo",
19+
"test": "npm run format"
20+
},
21+
"remarkConfig": {
22+
"plugins": [
23+
"preset-wooorm"
24+
]
25+
}
26+
}

0 commit comments

Comments
 (0)