This repository has been archived by the owner on Nov 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
67 lines (67 loc) · 2.16 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
{
"name": "mos-plugin-toc",
"version": "1.2.3",
"description": "A mos plugin for creating Table of Contents",
"files": [
"dist/"
],
"main": "dist/es5/index.js",
"jsnext:main": "dist/esnext/index.js",
"typings": "dist/es5/index.d.ts",
"scripts": {
"pretest": "npm run tsc",
"test": "mocha && npm run lint && node ../mos/bin/mos.js test -x=\"test/**/*.md\"",
"lint": "tslint -c tslint.json ./src/**/*.ts",
"precover": "npm run tsc",
"cover": "istanbul cover -x \"**/*.spec.js\" node_modules/mocha/bin/_mocha -- -R spec",
"postcover": "remap-istanbul -i coverage/esnext/coverage.raw.json -o coverage/ts/coverage.raw.json && remap-istanbul -i coverage/esnext/coverage.raw.json -o coverage/ts/lcov.info -t lcovonly && remap-istanbul -i coverage/esnext/coverage.raw.json -o coverage/ts/lcov-report -t html",
"md": "node ../mos/bin/mos.js -x=\"test/**/*.md\"",
"tsc": "tsc --pretty",
"compile": "npm run tsc && babel dist/esnext --out-dir dist/es5 --source-maps",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "https://github.com/mosjs/mos/tree/master/packages/mos-plugin-toc"
},
"keywords": [
"mos-plugin",
"toc",
"table-of-contents"
],
"author": {
"name": "Zoltan Kochan",
"email": "zoltan.kochan@gmail.com",
"url": "http://kochan.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mosjs/mos/issues"
},
"homepage": "https://github.com/mosjs/mos/tree/master/packages/mos-plugin-toc#readme",
"dependencies": {
"babel-runtime": "^6.9.0",
"github-slugger": "^1.1.1",
"markdownscript": "^1.3.0",
"mos-core": "^1.0.1",
"mos-processor": "^1.2.2",
"mos-read-pkg-up": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"chai": "^3.4.1",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^2.3.4",
"remap-istanbul": "^0.6.4",
"tslint": "^3.13.0",
"typescript": "^1.8.10",
"validate-commit-msg": "^2.6.1"
},
"engines": {
"node": ">=4"
}
}