marked/package.json

56 lines
1.5 KiB
JSON
Raw Normal View History

2011-07-24 08:15:35 -05:00
{
"name": "marked",
2011-08-24 11:38:27 -05:00
"description": "A markdown parser built for speed",
2011-07-24 08:15:35 -05:00
"author": "Christopher Jeffrey",
2018-03-23 07:51:20 -04:00
"version": "0.3.19",
2011-07-24 08:15:35 -05:00
"main": "./lib/marked.js",
"bin": "./bin/marked",
"man": "./man/marked.1",
2018-02-15 13:24:49 -05:00
"repository": "git://github.com/markedjs/marked.git",
2018-03-22 12:33:05 -04:00
"homepage": "https://marked.js.org",
2017-12-01 11:23:27 -05:00
"bugs": {
2018-02-15 13:24:49 -05:00
"url": "http://github.com/markedjs/marked/issues"
2017-12-01 11:23:27 -05:00
},
"license": "MIT",
2017-12-01 11:23:27 -05:00
"keywords": [
"markdown",
"markup",
"html"
],
"tags": [
"markdown",
"markup",
"html"
],
"devDependencies": {
"eslint": "^4.15.0",
"eslint-config-standard": "^11.0.0-beta.0",
2018-02-01 23:10:15 -06:00
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
2018-02-01 23:10:15 -06:00
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
2018-01-06 01:11:16 -06:00
"front-matter": "^2.3.0",
2018-01-07 11:25:24 -06:00
"glob-to-regexp": "0.3.0",
2018-03-03 01:00:29 -06:00
"jasmine": "^3.1.0",
2018-02-01 23:10:15 -06:00
"markdown": "*",
"markdown-it": "*",
"showdown": "*",
"uglify-js": "^3.3.10"
},
2017-12-01 11:23:27 -05:00
"scripts": {
2018-03-04 00:47:02 -06:00
"test": "jasmine --config=jasmine.json",
"test:unit": "npm test -- test/unit/**/*-spec.js",
"test:specs": "npm test -- test/specs/**/*-spec.js",
"test:integration": "npm test -- test/integration/**/*-spec.js",
"test:old": "node test",
"test:lint": "eslint bin/marked .",
"bench": "node test --bench",
"lint": "eslint --fix bin/marked .",
2018-02-19 14:42:20 -06:00
"build": "uglifyjs lib/marked.js -cm --comments /Copyright/ -o marked.min.js",
2018-02-25 11:44:10 -05:00
"preversion": "npm run build && (git diff --quiet || git commit -am 'minify')"
2018-02-11 14:19:29 +01:00
},
"engines": {
"node": ">=0.10.0"
2017-12-01 11:23:27 -05:00
}
2011-08-10 21:50:25 -05:00
}