-
Notifications
You must be signed in to change notification settings - Fork 234
/
package.json
50 lines (50 loc) · 1.12 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
{
"name": "string",
"version": "3.3.3",
"description": "string contains methods that aren't included in the vanilla JavaScript string such as escaping html, decoding html entities, stripping tags, etc.",
"homepage": "http://stringjs.com",
"repository": {
"type": "git",
"url": "https://github.com/jprichardson/string.js"
},
"keywords": [
"string",
"strings",
"string.js",
"stringjs",
"S",
"s",
"csv",
"html",
"entities",
"parse",
"html",
"tags",
"strip",
"trim",
"encode",
"decode",
"escape",
"unescape"
],
"author": "JP Richardson <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"gulp": "3.8.11",
"gulp-browserify": "0.5.1",
"gulp-mocha": "2.0.0",
"gulp-rename": "1.2.0",
"gulp-rimraf": "^0.1.1",
"gulp-uglify": "1.1.0",
"istanbul": "*",
"mocha": "*",
"mochify": "^2.9.0",
"uglify-js": "1.3.x"
},
"main": "lib/string",
"scripts": {
"test": "gulp test",
"istanbul": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha test/string.test.js"
}
}