-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
57 lines (57 loc) · 1.72 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
{
"name": "format-microformat",
"version": "0.11.1",
"license": "MIT",
"description": "Formats a Microformat JSON representation into eg. a Jekyll post",
"author": "Pelle Wessman <pelle@kodfabrik.se> (http://kodfabrik.se/)",
"homepage": "https://github.com/voxpelli/node-format-microformat",
"repository": {
"type": "git",
"url": "git://github.com/voxpelli/node-format-microformat.git"
},
"main": "index.js",
"scripts": {
"mocha": "NODE_ENV=test nyc --reporter=lcov --reporter text mocha test/**/*.spec.js",
"dependency-check": "JS_FILES=\"*.js test/*.js\" && dependency-check . $JS_FILES && dependency-check . $JS_FILES --unused --no-dev",
"test": "installed-check -e -i eslint && eslint . && npm run --silent dependency-check && npm run --silent mocha"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"coveralls": "3.1.0",
"dependency-check": "3.4.1",
"eslint": "5.16.0",
"eslint-config-semistandard": "13.0.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"husky": "1.3.1",
"installed-check": "2.2.0",
"mocha": "6.2.3",
"nyc": "13.3.0",
"sinon": "7.5.0",
"sinon-chai": "3.5.0"
},
"dependencies": {
"ent": "^2.2.0",
"escape-html": "^1.0.3",
"franc": "^1.1.1",
"iso-639-3": "^0.2.0",
"jekyll-utils": "^0.1.1",
"js-yaml": "^3.3.1",
"lodash.clonedeepwith": "^4.5.0",
"lodash.deburr": "^4.1.0",
"lodash.defaultsdeep": "^4.6.0",
"upndown": "^2.0.2"
}
}