-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.12 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.12 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
42
43
44
45
46
{
"name": "angularjs-filters",
"author": "Sumit Chawla",
"version": "0.0.2",
"description": "AngularJs common filters",
"main": "index.js",
"keywords": [
"angularjs",
"filters",
"angulars string filters"
],
"homepage": "https://github.com/sumitchawla/angularjs-filters",
"repository": {
"type": "git",
"url": "https://github.com/sumitchawla/angularjs-filters.git"
},
"devDependencies": {
"phantomjs" : "~1.9",
"karma": "~0.13",
"karma-bro": "~0.11",
"karma-chai": "~0.1",
"karma-mocha": "~0.2",
"karma-cli": "~0.1",
"karma-phantomjs-launcher": "~0.2",
"mocha": "~2.2",
"browserify-shim": "3"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"angular": "global:angular"
},
"main": "angularjs-filters",
"bugs": {
"url": "https://github.com/sumitchawla/angularjs-filters/issues"
},
"scripts": {
"karma": "karma start --single-run --browsers PhantomJS",
"karma2": "karma start karma2.conf.js --single-run --browsers PhantomJS",
"test": "npm run karma && npm run karma2"
},
"license": "MIT"
}