-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.61 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
{
"name": "gulp-insert-md",
"version": "0.1.1",
"description": "Insert custom content to markdown file",
"main": "lib/index.js",
"scripts": {
"test": "npm run build && ./node_modules/.bin/babel-node ./node_modules/.bin/babel-istanbul cover ./node_modules/.bin/_mocha -- --require should",
"travis": "npm run build && ./node_modules/.bin/babel-node ./node_modules/.bin/babel-istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --require should",
"dev": "./node_modules/.bin/babel -w src/ -d lib",
"build": "./node_modules/.bin/babel src/ -d lib"
},
"author": "LingyuCoder",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^6.1.0",
"babel-istanbul": "^0.7.0",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"del": "^1.1.0",
"eslint": "^2.13.1",
"gulp": "3.x.x",
"mocha": "~2.3.3",
"pretty-error": "~2.0.0",
"run-gulp-task": "^0.1.1",
"should": "~7.1.1"
},
"dependencies": {
"babel-runtime": "^6.6.1",
"gulp-util": "^3.0.7",
"linglog": "0.0.4",
"lodash": "~3.10.1",
"through2": "~0.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ly-tools/gulp-insert-md"
},
"keywords": [
"gulp",
"markdown",
"insert",
"replace",
"md"
],
"bugs": {
"url": "https://github.com/ly-tools/gulp-insert-md/issues"
},
"publishConfig": {
"registry": "http://registry.npmjs.org/"
}
}