-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.03 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
{
"name": "text-formatter",
"version": "0.0.1",
"description": "A general purpose text parsing & enhancement library ",
"main": "formatter.js",
"scripts": {
"test": "mocha",
"coverage": "mocha --require blanket -R html-cov > coverage.html"
},
"repository": {
"type": "git",
"url": "git://github.com/p3drosola/text-formatter.git"
},
"keywords": [
"text",
"parser",
"ast",
"text",
"enhancement",
"autolinker",
"formatter"
],
"author": "Pedro Solá <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/p3drosola/text-formatter/issues"
},
"homepage": "https://github.com/p3drosola/text-formatter",
"devDependencies": {
"mocha": "~1.17.1",
"blanket": "~1.1.6",
"gulp": "~3.5.2",
"gulp-mocha": "~0.4.1",
"gulp-coverage": "0.0.16",
"sinon": "~1.8.1",
"gulp-util": "~2.2.14",
"gulp-browserify": "~0.4.2",
"gulp-uglify": "~0.2.1"
},
"dependencies": {
"underscore": "~1.5.2",
"google-caja": "0.0.2"
}
}