-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
63 lines (63 loc) · 1.51 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "jquery.stringtoslug",
"version": "2.1.0",
"description": "Convert a STRING to a SLUG (kebab-case) in any language",
"main": "gulp.config.js",
"directories": {
"test": "tests"
},
"keywords": [
"permalink",
"string",
"text",
"slug",
"convert",
"transform",
"generate",
"sanitize",
"unicode",
"encode",
"latin",
"chars"
],
"scripts": {
"build": "gulp build",
"test": "gulp tests",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/leocaseiro/jQuery-Plugin-stringToSlug.git"
},
"author": "Leo Caseiro",
"license": "MIT",
"bugs": {
"url": "https://github.com/leocaseiro/jQuery-Plugin-stringToSlug/issues"
},
"homepage": "https://leocaseiro.github.com/jQuery-Plugin-stringToSlug",
"devDependencies": {
"del": "^2.0.0",
"gulp": "^3.9.0",
"gulp-header": "^1.7.1",
"gulp-if": "^1.2.5",
"gulp-jscs": "^2.0.0",
"gulp-jshint": "^1.11.2",
"gulp-load-plugins": "^0.10.0",
"gulp-plumber": "^1.0.1",
"gulp-rename": "^1.2.2",
"gulp-run": "^1.6.10",
"gulp-task-listing": "^1.0.1",
"gulp-uglify": "^1.4.0",
"jshint-stylish": "^2.0.1",
"karma": "^0.13.9",
"karma-phantomjs-launcher": "^0.2.1",
"karma-qunit": "^0.1.5",
"phantomjs": "^2.1.3",
"qunitjs": "^1.19.0",
"semantic-release": "^4.3.5"
},
"dependencies": {
"jquery": "^3.3.1",
"speakingurl": "^14.0.1"
}
}