-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 1.73 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
{
"name": "pimd",
"version": "0.6.0",
"description": "Processing instructions for Markdown",
"main": "index.js",
"scripts": {
"lint": "eslint lib/*.js lib/**/*.js test/*.js test/**/*.js plugins/*/*.js demo/gulpfile.js demo/js/*.js",
"test": "mocha ./test/*.test.js ./test/**/*.test.js ./plugins/*/test.js --require ./test/setup",
"plugin:npminstall": "./scripts/install-plugins-dependencies.sh"
},
"repository": {
"type": "git",
"repository": "github:hagenburger/pimd"
},
"bugs": {
"url": "https://github.com/hagenburger/pimd/issues"
},
"homepage": "https://github.com/hagenburger/pimd#readme",
"author": "Nico Hagenburger <[email protected]> (https://twitter.com/hagenburger)",
"keywords": [
"markdown",
"parser",
"markdown-it",
"documentation",
"docs",
"styleguide",
"livingstyleguide",
"designsystem",
"generator"
],
"license": "MIT",
"greenkeeper": {
"commitMessages": {
"dependencyUpdate": "Update ${dependency} to version ${version}",
"devDependencyUpdate": "Update ${dependency} to version ${version}",
"dependencyPin": "Pin ${dependency} to ${oldVersion}",
"devDependencyPin": "Pin ${dependency} to ${oldVersion}"
}
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.4.0",
"eslint-config-standard": "^12.0.0-alpha.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"lerna": "^3.1.1",
"mocha": "^6.0.0",
"prettier": "1.14.3",
"sinon": "^7.2.5",
"sinon-chai": "^3.1.0"
},
"dependencies": {
"jsdom": "^13.0.0",
"markdown-it": "^8.4.2"
}
}