-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.33 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
49
50
51
52
53
54
{
"name": "marktable",
"version": "0.1.2",
"description": "Markdown table parser, editor and formater ",
"main": "lib/marktable.js",
"scripts": {
"test": "npm run lint && mocha",
"spec": "mocha --reporter spec",
"monitor": "mocha --reporter spec --watch",
"debugtest": "mocha --debug-brk --reporter spec",
"lint": "standard",
"coverage": "nyc --reporter=html --reporter=text mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/nopnop/marktable.git"
},
"keywords": [
"markdown",
"gfm",
"table",
"parser",
"formater",
"html",
"multiline"
],
"author": "Jean Ponchon <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nopnop/marktable/issues"
},
"homepage": "https://github.com/nopnop/marktable",
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"devDependencies": {
"cli-color": "^1.0.0",
"expect.js": "^0.3.1",
"lodash.findwhere": "^3.1.0",
"lodash.pluck": "^3.1.2",
"lodash.where": "^3.1.0",
"mocha": "^4.0.1",
"nyc": "^11.2.1",
"standard": "^10.0.3"
},
"dependencies": {
"debug": "^3.1.0",
"lodash.pad": "^4.5.1",
"lodash.padleft": "^3.1.1",
"lodash.padright": "^3.1.1",
"lodash.range": "^3.0.0",
"lodash.repeat": "^4.1.0"
}
}