-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 881 Bytes
/
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
{
"name": "mdlint",
"version": "0.1.0",
"description": "Lints markdown files to find JavaScript syntax errors",
"main": "index.js",
"bin": "./bin/mdlint",
"scripts": {
"test": "grunt"
},
"repository": {
"type": "git",
"url": "https://github.com/ChrisWren/mdlint.git"
},
"author": "ChrisWren",
"preferGlobal": true,
"license": "MIT",
"dependencies": {
"request": "~2.22.0",
"esprima": "~1.0.3",
"colors": "~0.6.0-1",
"commander": "~1.3.0",
"lodash": "~1.3.1",
"glob": "~3.2.1"
},
"keywords": [
"markdown",
"lint"
],
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.6.0",
"grunt-simple-mocha": "~0.4.0",
"should": "~1.2.2",
"sinon": "~1.7.3",
"rewire": "~1.1.3",
"grunt-contrib-watch": "~0.5.1",
"matchdep": "~0.1.2",
"grunt-release": "~0.5.1"
}
}