-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
126 lines (126 loc) · 3.14 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "hercule",
"version": "5.1.3",
"description": "Markdown, API Blueprint and string transclusion",
"main": "./lib/hercule.js",
"exports": {
".": "./lib/hercule.js",
"./promises": "./lib/promises.js",
"./package.json": "./package.json"
},
"scripts": {
"test": "npm run test-units && npm run test-integration && npm run test-cli",
"test-units": "nyc --cache ava --verbose test/units/**/*.js",
"test-integration": "ava --verbose test/integration/**/*.js",
"test-cli": "npm run compile && bats test/bats",
"posttest": "npm run lint",
"coverage": "nyc report --reporter=html && open coverage/lcov-report/index.html",
"codecov": "nyc report --reporter=text-lcov > coverage.lcov",
"compile": "babel src --out-dir lib && npm run compile-grammars",
"compile-grammars": "pegjs -o grammars/link.js grammars/link.pegjs",
"lint": "eslint ./src ./test",
"lsif": "lsif-tsc src/**/*.js test/**/*.js --AllowJs --checkJs",
"preversion": "npm test",
"version": "rm -r ./lib && npm run compile",
"postversion": "git push && git push --tags",
"benchmark": "./test/benchmark.js",
"precommit": "lint-staged"
},
"engines": {
"node": ">=10"
},
"publishConfig": {
"tag": "next"
},
"files": [
"bin",
"lib/*.js",
"promises.js",
"grammars/link.js",
"PURPOSE.md"
],
"ava": {
"require": [
"@babel/register"
]
},
"nyc": {
"exclude": [
"node_modules",
"grammars",
"test"
]
},
"lint-staged": {
"*.js": [
"prettier"
]
},
"prettier": {
"arrowParens": "avoid"
},
"bin": {
"hercule": "./bin/hercule"
},
"repository": {
"type": "git",
"url": "https://github.com/jamesramsay/hercule.git"
},
"keywords": [
"markdown",
"transclude",
"transclusion",
"api",
"blueprint",
"documentation",
"apiary",
"preprocessor"
],
"author": {
"name": "James Ramsay",
"url": "http://jramsay.com.au"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jamesramsay/hercule/issues"
},
"homepage": "https://github.com/jamesramsay/hercule",
"dependencies": {
"async": "^3.2.0",
"clone-regexp": "^2.1.0",
"duplexer3": "^0.1.4",
"get-stream": "^6.0.0",
"got": "^11.1.4",
"isstream": "^0.1.2",
"left-split": "^1.0.0",
"lodash": "^4.0.0",
"meow": "^9.0.0",
"source-map": "^0.7.0",
"through2": "^4.0.2",
"through2-get": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"@sourcegraph/lsif-tsc": "^0.6.4",
"ava": "^3.8.2",
"bats": "^1.0.0",
"benchmark": "^2.1.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-ava": "^10.5.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-lodash": "^7.1.0",
"eslint-plugin-prettier": "^3.0.0",
"lint-staged": "^10.2.9",
"nock": "^13.0.5",
"nyc": "^15.1.0",
"pegjs": "^0.10.0",
"prettier": "^2.0.5",
"sinon": "^9.0.2",
"stream-spigot": "^3.0.5"
}
}