-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
38 lines (38 loc) · 850 Bytes
/
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
{
"name": "textlint-plugin-rst",
"description": "reStructuredText support for textlint",
"version": "0.1.1",
"main": "lib/index.js",
"files": [
"src",
"lib"
],
"scripts": {
"build": "babel -s -d lib src",
"watch": "babel -w -s -d lib src",
"prepublish": "npm run --if-present build",
"clean": "rm -frv lib"
},
"author": "Yoshinobu Fujimoto",
"email": "[email protected]",
"license": "MIT",
"keywords": [
"textlint",
"plugin",
"rst",
"reStructuredText"
],
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.6.0",
"mocha": "^2.4.5",
"power-assert": "^1.3.1",
"textlint": "^6.0.3"
},
"dependencies": {
"debug": "^2.2.0",
"structured-source": "^3.0.2",
"traverse": "^0.6.6"
}
}