-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 924 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
{
"name": "angular-camelcase-to-human",
"version": "1.0.0",
"description": "Convert camelCase strings to human readable ones",
"keywords": [
"browser",
"angular",
"camelcase",
"filter"
],
"repository": "jdpedrie/angularjs-camelCase-to-human-filter",
"author": "John Dennis Pedrie <john@pedrie.com> (http://johnpedrie.com)",
"license": "MIT",
"main": "camelcase-browser.js",
"files": [
"index.js",
"LICENSE.md"
],
"devDependencies": {
"angular": "^1.3.15",
"angular-mocks": "^1.3.15",
"browserify": "^9.0.3",
"chai": "^2.1.2",
"karma": "^0.12.31",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.1.7",
"karma-mocha": "^0.1.10",
"mocha": "^2.2.1"
},
"dependencies": {
"decamelize": "1.0.0"
},
"scripts": {
"browser": "browserify -o camelcase-browser.js index.js",
"test": "./node_modules/karma/bin/karma start"
}
}