forked from paulsmith/angular-slugify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.09 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.09 KB
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
{
"name": "angular-slugify",
"version": "1.0.1",
"description": "Provides “slugification” for AngularJS in the form of a service, filter, and a directive.",
"main": "angular-slugify.js",
"directories": {
"test": "test"
},
"scripts": {
"postinstall": "bower install",
"pretest": "npm install",
"test": "node node_modules/.bin/karma start test/karma.conf.js",
"test-single-run": "node node_modules/.bin/karma start test/karma.conf.js --single-run"
},
"repository": {
"type": "git",
"url": "https://github.com/paulsmith/angular-slugify.git"
},
"keywords": [
"slug",
"slugs",
"slugify"
],
"author": "Paul Smith <paulsmith@pobox.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/paulsmith/angular-slugify/issues"
},
"homepage": "https://github.com/paulsmith/angular-slugify",
"dependencies": {
"angular": "^1.0.x"
},
"devDependencies": {
"karma": "^0.13.3",
"karma-chrome-launcher": "^0.2.0",
"karma-jasmine": "^0.3.6",
"bower": "^1.4.1",
"angular": "^1.2.x",
"angular-mocks": "^1.2.x"
}
}