-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.3 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
{
"name": "md-title",
"version": "1.0.3",
"description": "get title from markdown article",
"main": "index.es5.js",
"scripts": {
"coverage": "isparta cover _mocha index.js --include-all-sources -- --require babel-core/register",
"precoveralls": "npm run coverage",
"coveralls": "coveralls < coverage/lcov.info",
"test": "mocha --require babel-core/register",
"tdd": "npm test -- --watch",
"transpile": "babel index.js --out-file index.es5.js",
"prepublish": "npm run transpile",
"clean": "rimraf index.es5.js",
"push": "git push --follow-tags",
"postpublish": "npm-run-all clean push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greybax/md-title.git"
},
"keywords": [
"md",
"markdown",
"remark",
"article",
"title"
],
"author": "Aleksandr Filatov <greybax@gmail.com> (https://alfilatov.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/greybax/md-title/issues"
},
"homepage": "https://github.com/greybax/md-title#readme",
"devDependencies": {
"assert": "*",
"babel-cli": "^6.11.4",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.9.0",
"coveralls": "*",
"isparta": "*",
"mocha": "*",
"rimraf": "*"
},
"dependencies": {
"remark-helpers": "^0.0.6"
}
}