forked from huang47/nodejs-html-truncate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1005 Bytes
/
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
{
"author": "huang47 <[email protected]> (http://huang47.blogspot.com)",
"name": "html-truncate",
"main": "lib/truncate.js",
"description": "truncate html text and keep tag safe",
"version": "1.2.1",
"repository": {
"type": "git",
"url": "git://github.com/huang47/nodejs-html-truncate.git"
},
"scripts": {
"prestart": "npm i",
"start": "gulp",
"pretest": "npm i",
"test": "istanbul cover _mocha -- -R spec",
"postpublish": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"engines": {
"node": "*"
},
"contributors": [
"Francois-Guillaume Ribreau <[email protected]> (http://fgribreau.com)"
],
"dependencies": {},
"devDependencies": {
"browserify": "^9.0.8",
"coveralls": "^2.11.2",
"gulp": "^3.8.11",
"istanbul": "^0.3.13",
"mocha": "*",
"mocha-lcov-reporter": "0.0.1",
"vinyl-source-stream": "^1.1.0",
"yuidocjs": "*"
}
}