-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.58 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
56
57
58
{
"name": "textlint-plugin-asciidoctor",
"description": "yet another asciidoctor plugin for textlnt",
"version": "1.1.0",
"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.9"
},
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/plugin-proposal-object-rest-spread": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/register": "^7.10.3",
"@textlint/ast-tester": "^2.1.0",
"babel-jest": "^26.0.1",
"braces": ">=2.3.1",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"jest": "^26.0.1",
"parse5": "^4.0.0",
"prettier": "^1.15.3",
"regenerator-runtime": "^0.11.1",
"rimraf": "^2.6.2",
"textlint": "^10.2.1"
},
"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 --env node",
"updateSnapshot": "jest --env node --updateSnapshot"
}
}