-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.63 KB
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
{
"name": "@onlinejavaclass/marked",
"version": "0.0.4",
"main": "./lib/marked.js",
"scripts": {
"bench": "node test --bench",
"build": "uglifyjs lib/marked.js -cm --comments /Copyright/ -o marked.min.js",
"lint": "eslint --fix lib/marked.js test/index.js",
"preversion": "npm run build && (git diff --quiet || git commit -am 'minify')",
"test": "jasmine --config=jasmine.json",
"test:integration": "npm test -- test/integration/**/*-spec.js",
"test:lint": "eslint lib/marked.js test/index.js",
"test:old": "node test",
"test:specs": "npm test -- test/specs/**/*-spec.js",
"test:unit": "npm test -- test/unit/**/*-spec.js"
},
"repository": {
"type": "git",
"url": "git://github.com/onlinejavaclass/marked.git"
},
"author": "Mehrdad Karami",
"license": "MIT",
"bugs": {
"url": "https://github.com/onlinejavaclass/marked/issues"
},
"devDependencies": {
"eslint": "^4.15.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"front-matter": "^2.3.0",
"glob-to-regexp": "0.3.0",
"jasmine": "^3.1.0",
"markdown": "*",
"markdown-it": "*",
"showdown": "*",
"uglify-js": "^3.3.10"
},
"keywords": [
"markdown",
"markup",
"html"
],
"man": [
"./man/marked.1"
],
"tags": [
"markdown",
"markup",
"html"
],
"homepage": "https://github.com/onlinejavaclass/marked#readme",
"directories": {
"lib": "lib",
"man": "man"
},
"dependencies": {},
"description": ""
}