-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
38 lines (38 loc) · 1.06 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
{
"name": "showdown-extension-boilerplate",
"version": "0.0.1",
"description": "A boilerplate that can be used to jumpstart your showdown extension development",
"keywords": [
"markdown",
"md",
"showdown",
"extension"
],
"license": "MIT",
"author": "Estevão Soares dos Santos",
"main": "./dist/showdown-extension-boilerplate.js",
"repository": {
"type": "git",
"url": "https://github.com/showdownjs/showdown-extension-boilerplate.git",
"web": "https://github.com/showdownjs/showdown-extension-boilerplate"
},
"devDependencies": {
"chai": "^2.3.0",
"grunt": "^0.4.5",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-uglify": "^0.9.1",
"grunt-conventional-changelog": "^4.0.0",
"grunt-jscs": "^1.8.0",
"grunt-rename": "^0.1.4",
"grunt-simple-mocha": "^0.4.0",
"grunt-update-json": "^0.2.1",
"load-grunt-tasks": "^3.2.0",
"mocha": "^2.2.5",
"should": "^6.0.3",
"source-map-support": "^0.3.0"
},
"scripts": {
"test": "grunt test"
}
}