forked from seikichi/textlint-plugin-asciidoctor
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.46 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": "textlint-plugin-asciidoctor",
"description": "yet another asciidoctor plugin for textlnt",
"version": "1.0.1",
"author": "seikichi",
"bin": {
"asciidoc-to-textlint-ast": "./bin/asciidoc-to-textlint-ast.js"
},
"bugs": {
"url": "https://github.com/seikichi/textlint-plugin-asciidoctor/issues"
},
"dependencies": {
"asciidoctor.js": "^1.5.6-preview.4"
},
"devDependencies": {
"@textlint/ast-tester": "^2.0.4",
"ava": "^0.24.0",
"babel-cli": "^6.26.0",
"babel-jest": "^22.1.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"cross-env": "^5.1.3",
"eslint": "^4.16.0",
"jest": "^22.1.4",
"prettier": "^1.10.2",
"regenerator-runtime": "^0.11.1",
"rimraf": "^2.6.2",
"textlint": "^10.1.3"
},
"files": [
"bin/",
"lib/",
"src/"
],
"homepage": "https://github.com/seikichi/textlint-plugin-asciidoctor#readme",
"keywords": [
"asciidoc",
"asciidoctor",
"textlint"
],
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/seikichi/textlint-plugin-asciidoctor.git"
},
"scripts": {
"build": "cross-env NODE_ENV=production babel src --out-dir lib --source-maps",
"clean": "rimraf lib/",
"fix": "prettier --write src/**/*.js test/**/*.js bin/**/*.js",
"prepublish": "npm run --if-present build",
"test": "jest"
}
}