forked from jamesramsay/hercule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 3.27 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": "4.0.1",
"description": "Markdown, API Blueprint and string transclusion",
"main": "./lib/hercule",
"scripts": {
"test": "npm run test-units && npm run test-integration && npm run test-cli",
"test-units": "nyc --cache ava --verbose test/units",
"test-integration": "ava --verbose test/integration",
"test-cli": "npm run compile && .bats/bin/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 && codecov",
"compile": "babel src --out-dir lib --source-maps && npm run compile-grammars",
"compile-grammars": "mkdir -p ./lib/grammar && pegjs -o lib/grammar/link.js src/grammar/link.pegjs",
"lint": "eslint ./src ./test",
"release:major": "npm version major && git push --follow-tags",
"release:minor": "npm version minor && git push --follow-tags",
"release:patch": "npm version patch && git push --follow-tags",
"benchmark": "./test/benchmark.js",
"precommit": "lint-staged",
"commitmsg": "validate-commit-msg"
},
"engines": {
"node": ">=4.0.0"
},
"ava": {
"require": "babel-register",
"babel": "inherit"
},
"nyc": {
"exclude": [
"node_modules",
"lib/grammar/link.js",
"test"
]
},
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma es5 --write",
"git add"
]
},
"config": {
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"build",
"ci",
"chore",
"revert"
]
}
},
"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": "^2.1.4",
"clone-regexp": "^1.0.0",
"duplexer3": "^0.1.4",
"get-stream": "^3.0.0",
"got": "^7.0.0",
"isstream": "^0.1.2",
"left-split": "^1.0.0",
"lodash": "^4.0.0",
"meow": "^3.7.0",
"source-map": "^0.5.3",
"through2": "^2.0.0",
"through2-get": "^0.0.2"
},
"devDependencies": {
"ava": "^0.20.0",
"babel-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.9.0",
"benchmark": "^2.1.3",
"codecov": "^2.1.0",
"eslint": "^4.1.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-config-prettier": "^2.2.0",
"eslint-plugin-ava": "^4.0.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-lodash": "^2.4.0",
"eslint-plugin-prettier": "^2.1.2",
"husky": "^0.14.0",
"lint-staged": "^4.0.0",
"nock": "^9.0.0",
"nyc": "^11.0.2",
"pegjs": "^0.10.0",
"prettier": "^1.4.4",
"sinon": "^2.0.0",
"stream-spigot": "^3.0.5",
"validate-commit-msg": "^2.12.2"
}
}