This repository has been archived by the owner on Nov 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.53 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
72
73
74
75
76
77
78
79
80
81
{
"name": "mos-plugin-installation",
"version": "0.0.0-placeholder",
"description": "A mos plugin for creating installation section",
"files": [
"src/",
"dist/"
],
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"test-es5": "mocha --compilers js:babel-register && npm run lint",
"test": "npm run test-es5 && mos test -x=\"test/**\"",
"lint": "eslint src/**/*.js",
"commit": "git-cz",
"coverage": "istanbul cover -x \"**/*.spec.js\" node_modules/mocha/bin/_mocha -- --compilers js:babel-register -R spec",
"precoveralls": "istanbul cover -x \"**/*.spec.js\" node_modules/mocha/bin/_mocha --report lcovonly -- --compilers js:babel-register -R spec && npm i coveralls@2",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"postcoveralls": "rm -rf ./coverage",
"md": "mos -x=\"test/**\"",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"transpile": "babel src --out-dir dist",
"prepublish": "npm run transpile"
},
"repository": {
"type": "git",
"url": "https://github.com/mosjs/mos-plugin-installation"
},
"keywords": [
"mos-plugin",
"installation"
],
"author": {
"name": "Zoltan Kochan",
"email": "zoltan.kochan@gmail.com",
"url": "http://kochan.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mosjs/mos-plugin-installation/issues"
},
"homepage": "https://github.com/mosjs/mos-plugin-installation#readme",
"dependencies": {
"babel-runtime": "^6.9.0",
"markdownscript": "^1.3.0",
"mdast-util-to-string": "^1.0.1"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"chai": "^3.4.1",
"cz-conventional-changelog": "1.1.5",
"eslint": "^2.9.0",
"eslint-config-standard": "^5.3.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
"ghooks": "^1.2.1",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^2.3.4",
"mos": "^1.0.0",
"mos-plugin-ejs": "^1.1.0",
"mos-processor": "^1.2.0",
"semantic-release": "^4.3.5",
"validate-commit-msg": "^2.6.1"
},
"engines": {
"node": ">=0.10"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"commit-msg": "node ./node_modules/validate-commit-msg/index.js",
"pre-commit": "npm test"
}
}
}