forked from djm/remark-shortcodes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.2 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
{
"name": "remark-shortcodes",
"version": "0.3.0",
"description": "Shortcode parser plugin for Remark",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/djm/remark-shortcodes.git"
},
"keywords": [
"markdown",
"remark",
"shortcodes"
],
"author": "Darian Moody <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/djm/remark-shortcodes"
},
"homepage": "https://github.com/djm/remark-shortcodes",
"peerDependencies": {
"remark-parse": ">=3.0.0"
},
"files": [
"index.js"
],
"devDependencies": {
"browserify": "^14.4.0",
"esmangle": "^1.0.1",
"nyc": "^11.2.1",
"prettier": "^1.6.1",
"remark": "^8.0.0",
"remark-cli": "^4.0.0",
"tape": "^4.8.0"
},
"scripts": {
"build-bundle": "browserify index.js -s remarkShortcodes > remark-shortcodes.js",
"build-mangle": "esmangle remark-shortcodes.js > remark-shortcodes.min.js",
"build": "npm run build-bundle && npm run build-mangle",
"format": "prettier --write 'index.js'",
"test-code": "node test.js",
"test-coverage": "nyc --reporter lcov tape test.js",
"test": "npm run build && npm run test-coverage"
}
}