-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "angular-capitalize-filter",
"version": "3.0.0",
"description": "AngularJS filter to capitalize sentences and specially team names.",
"author": "Pablo Villoslada Puigcerber <[email protected]> (http://pablovilloslada.com/)",
"main": "index.js",
"scripts": {
"build": "uglifyjs capitalize.js -m -o capitalize.min.js",
"lint": "jshint capitalize.js test; true",
"test": "karma start",
"pretest": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/Puigcerber/angular-capitalize-filter"
},
"bugs": {
"url": "https://github.com/Puigcerber/angular-capitalize-filter/issues"
},
"keywords": [
"angularjs",
"capitalize",
"filter",
"humanize"
],
"dependencies": {
"angular": "^1.2.15"
},
"devDependencies": {
"angular-mocks": "^1.5.0",
"jshint": "^2.9.1",
"karma": "~0.12.1",
"karma-chrome-launcher": "^0.2.2",
"karma-jasmine": "~0.1.5",
"karma-phantomjs-launcher": "^1.0.0",
"phantomjs-prebuilt": "^2.1.4",
"uglify-js": "^2.6.2"
},
"license": "MIT"
}