-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.34 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
{
"name": "textlintrc-to-package-list",
"repository": {
"type": "git",
"url": "git+https://github.com/textlint/textlintrc-to-package-list.git"
},
"author": "azu",
"email": "[email protected]",
"homepage": "https://github.com/textlint/textlintrc-to-package-list",
"license": "MIT",
"bugs": {
"url": "https://github.com/textlint/textlintrc-to-package-list/issues"
},
"version": "2.0.0",
"description": "listing package name from .textlintrc",
"main": "lib/textlintrc-to-package-list.js",
"bin": {
"textlintrc-to-package-list": "bin/cmd.js"
},
"files": [
"bin",
"lib",
"src"
],
"directories": {
"test": "test"
},
"scripts": {
"build": "NODE_ENV=production babel src --out-dir lib --source-maps",
"watch": "babel src --out-dir lib --watch --source-maps",
"prepublish": "npm run --if-present build",
"test": "mocha",
"updateSnapshot": "UPDATE_SNAPSHOT=1 npm test"
},
"keywords": [
"textlint",
"textlint-config"
],
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-preset-power-assert": "^3.0.0",
"mocha": "^9.1.3"
},
"dependencies": {
"concat-stream": "^2.0.0",
"strip-json-comments": "^3.1.1"
}
}