txt-ast-traverse
Advanced tools
Comparing version 2.0.3 to 2.0.4
@@ -6,2 +6,10 @@ # Change Log | ||
<a name="2.0.4"></a> | ||
## [2.0.4](https://github.com/textlint/textlint/compare/txt-ast-traverse@2.0.3...txt-ast-traverse@2.0.4) (2018-01-18) | ||
**Note:** Version bump only for package txt-ast-traverse | ||
<a name="2.0.3"></a> | ||
@@ -8,0 +16,0 @@ ## [2.0.3](https://github.com/textlint/textlint/compare/txt-ast-traverse@2.0.2...txt-ast-traverse@2.0.3) (2018-01-12) |
{ | ||
"name": "txt-ast-traverse", | ||
"version": "2.0.4", | ||
"description": "TxtNode traverse library", | ||
@@ -8,4 +9,16 @@ "keywords": [ | ||
], | ||
"version": "2.0.3", | ||
"homepage": "https://github.com/textlint/textlint/tree/master/packages/txt-ast-traverse", | ||
"bugs": { | ||
"url": "https://github.com/textlint/textlint/issues" | ||
}, | ||
"license": "MIT", | ||
"author": "azu", | ||
"files": [ | ||
"lib" | ||
], | ||
"main": "./lib/txt-ast-traverse/src/index.js", | ||
"types": "./lib/txt-ast-traverse/src/index.d.ts", | ||
"directories": { | ||
"test": "test/" | ||
}, | ||
"repository": { | ||
@@ -15,27 +28,17 @@ "type": "git", | ||
}, | ||
"main": "./lib/txt-ast-traverse/src/index.js", | ||
"types": "./lib/txt-ast-traverse/src/index.d.ts", | ||
"files": [ | ||
"lib" | ||
], | ||
"scripts": { | ||
"build": "cross-env NODE_ENV=production tsc -p .", | ||
"clean": "rimraf lib/", | ||
"prepublish": "npm run --if-present build", | ||
"test": "mocha \"test/**/*.ts\"", | ||
"watch": "tsc -p . --watch", | ||
"prepublish": "npm run --if-present build", | ||
"clean": "rimraf lib/" | ||
"watch": "tsc -p . --watch" | ||
}, | ||
"directories": { | ||
"test": "test/" | ||
"dependencies": { | ||
"@textlint/ast-node-types": "^4.0.1" | ||
}, | ||
"author": "azu", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/textlint/textlint/issues" | ||
}, | ||
"devDependencies": { | ||
"@textlint/markdown-to-ast": "^6.0.4", | ||
"@types/mocha": "^2.2.44", | ||
"@types/node": "^8.5.1", | ||
"cross-env": "^5.1.1", | ||
"markdown-to-ast": "^2.0.0", | ||
"mocha": "^4.0.1", | ||
@@ -45,6 +48,3 @@ "rimraf": "^2.6.2", | ||
"typescript": "^2.6.2" | ||
}, | ||
"dependencies": { | ||
"@textlint/ast-node-types": "^4.0.0" | ||
} | ||
} |
@@ -5,3 +5,3 @@ # txt-ast-traverse | ||
This traverse function is a fork of [estraverse](https://github.com/estools/estraverse "Estraverse") for [textlint/markdown-to-ast](https://github.com/textlint/textlint/tree/master/packages/markdown-to-ast/ "textlint/markdown-to-ast"). | ||
This traverse function is a fork of [estraverse](https://github.com/estools/estraverse "Estraverse") for [@textlint/markdown-to-ast](https://github.com/textlint/textlint/tree/master/packages/@textlint/markdown-to-ast/ "textlint/markdown-to-ast"). | ||
@@ -19,4 +19,4 @@ This library is a part of [textlint/textlint](https://github.com/textlint/textlint "textlint/textlint"). | ||
```js | ||
var parse = require("markdown-to-ast").parse, | ||
Syntax = require("markdown-to-ast").Syntax; | ||
var parse = require("@textlint/markdown-to-ast").parse, | ||
Syntax = require("@textlint/markdown-to-ast").Syntax; | ||
var traverse = require("txt-ast-traverse").traverse, | ||
@@ -23,0 +23,0 @@ VisitorOption = require("txt-ast-traverse").VisitorOption; |
24999