forked from imdone/imdone-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.67 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "imdone-core",
"version": "1.5.9",
"description": "imdone-core",
"main": "index.js",
"scripts": {
"build": "doctoc --github --notitle README.md && npm test",
"test": "export NODE_ENV=test && npm run coverage",
"coverage": "nyc --reporter=lcov --reporter=text --reporter=html mocha",
"lint": "jshint ./lib",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"repository": {
"type": "git",
"url": "https://github.com/imdone/imdone-core.git"
},
"keywords": [
"imdone",
"TODO",
"FIXME",
"markdown",
"issues",
"task-board"
],
"author": "Jesse Piascik",
"license": "MIT",
"bugs": {
"url": "https://github.com/imdone/imdone-core/issues"
},
"homepage": "https://github.com/imdone/imdone-core",
"jshintConfig": {
"strict": true,
"node": true,
"globals": {
"jQuery": true,
"console": false,
"module": true,
"document": true
}
},
"dependencies": {
"async": "~1.5.0",
"checksum": "^0.1.1",
"cheerio": "^1.0.0-rc.2",
"chokidar": "1.7.0",
"debug": "^2.2.0",
"escape-string-regexp": "^1.0.5",
"front-matter": "^2.3.0",
"ignore": "^3.2.0",
"isbinaryfile": "^3.0.2",
"lodash": "2.4.2",
"markdown-it": "^8.4.0",
"markdown-it-checkbox": "^1.1.0",
"moment": "^2.22.1",
"orql": "^0.2.0",
"recursive-readdir": "^2.2.1"
},
"devDependencies": {
"doctoc": "^1.3.0",
"expect.js": "~0.3.1",
"jshint": "^2.9.4",
"json-stringify-safe": "~5.0.0",
"mocha": "^5.2.0",
"nyc": "^10.3.0",
"should": "13.1.3",
"sinon": "~1.9.0",
"vuepress": "^0.8.4",
"wrench": "~1.5.8"
}
}