-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.86 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "mdj",
"version": "0.4.2",
"description": "Markdown (GFM) to JSON converter",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"test": "nyc mocha --opts mocha.opts",
"test:auto": "mocha --opts mocha.opts --watch",
"prebuild": "npm run lint && npm test",
"build": "rollup -c",
"prepublish": "npm run build",
"lint": "tslint \"src/**/**.ts*\" --type-check --fix --project tsconfig.json"
},
"author": "Dmitry Korolev <dmitry@korolev.dk>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dmitry-korolev/mdj.git"
},
"bugs": {
"url": "https://github.com/dmitry-korolev/mdj/issues"
},
"keywords": [
"json",
"markdown",
"converter",
"parser",
"typescript"
],
"devDependencies": {
"@types/benchmark": "^1.0.30",
"@types/chai": "^3.5.2",
"@types/marked": "0.0.28",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.18",
"benchmark": "^2.1.4",
"chai": "^3.5.0",
"marked": "^0.3.6",
"mocha": "^3.3.0",
"nyc": "^10.3.2",
"rollup": "^0.41.6",
"rollup-plugin-alias": "^1.3.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-ts": "^0.1.0",
"rollup-plugin-uglify": "^1.0.2",
"source-map-support": "^0.4.15",
"ts-node": "^3.0.4",
"tsconfig-paths": "^2.1.2",
"tslib": "^1.7.0",
"tslint": "^5.2.0",
"tslint-config-standard": "^5.0.2",
"tslint-eslint-rules": "^4.0.0",
"typescript": "^2.3.2"
},
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"exclude": [
"src/**/*.spec.ts",
"lib"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register",
"tsconfig-paths/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
}
}