-
Notifications
You must be signed in to change notification settings - Fork 94
/
package.json
23 lines (23 loc) · 845 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
{ "name": "slug"
, "description": "slugifies even utf-8 chars!"
, "version": "0.9.1"
, "homepage": "https://github.com/dodo/node-slug"
, "author": "dodo (https://github.com/dodo)"
, "repository": {"type": "git", "url": "git://github.com/dodo/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": {
"unicode": ">= 0.3.1"}
, "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/dodo/node-slug/raw/master/LICENSE"} ]
}