-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 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
{
"name": "md2bbc",
"version": "1.1.0",
"description": "Renderer for marked to convert markdown to bbcode",
"main": "index.js",
"scripts": {
"test": "node_modules/gulp/bin/gulp.js test",
"test-browser": ""
},
"repository": {
"type": "git",
"url": "git+https://github.com/holi0317/md2bbc.js.git"
},
"keywords": [
"markdown",
"bbcode"
],
"author": "Holi0317 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/holi0317/md2bbc.js/issues"
},
"homepage": "https://github.com/holi0317/md2bbc.js#readme",
"engines": {
"node": ">=4.0.0"
},
"babel": {
"presets": [
"es2015"
]
},
"devDependencies": {
"babel-preset-es2015": "^6.1.18",
"del": "^2.1.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
"gulp-babel-istanbul": "^0.11.0",
"gulp-load-plugins": "^1.1.0",
"gulp-mocha": "^2.2.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.4.1",
"marked": "^0.3.5",
"mocha": "^2.3.3",
"run-sequence": "^1.1.5",
"should": "^7.1.0"
}
}