forked from dodo/node-slug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 909 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
36
37
38
{
"name": "slug",
"description": "slugifies even utf-8 chars!",
"version": "1.0.0",
"homepage": "https://github.com/suisha/node-slug",
"author": {
"name": "David Mai"
},
"repository": {
"type": "git",
"url": "git://github.com/suisha/node-slug.git"
},
"main": "slug.js",
"engines": {
"node": ">= 0.4.x"
},
"keywords": ["slugify", "slug", "string", "utf8", "utf-8", "unicode", "url"],
"scripts": {
"test": "./node_modules/.bin/mocha ./test/*.test.* --require should --reporter spec --colors --compilers coffee:coffee-script/register"
},
"dependencies": {
"unidecode": "0.1.8"
},
"devDependencies": {
"mocha": "~1.17.1",
"should": "~3.1.2",
"coffee-script": "~1.7.1"
},
"bin": {
"slug": "bin/slug.js"
},
"licenses" : [
{
"type": "MIT" ,
"url": "http://github.com/suisha/node-slug/raw/master/LICENSE"
}
]
}