forked from monospaced/angular-hammer
-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
69 lines (69 loc) · 1.57 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "angular-hammer",
"version": "2.2.0",
"description": "Hammer.js support for Angular.js applications",
"main": "index.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/RyanMullins/angular-hammer.git"
},
"keywords": [
"hammer",
"angular",
"javascript",
"touch",
"gesture"
],
"author": "Ryan S Mullins",
"contributors": [
"James Wilson",
"Alexander Pinnecke"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jsdw/angular-hammer/issues"
},
"homepage": "http://ryanmullins.github.io/angular-hammer/",
"dependencies": {
"angular": ">=1.2.0",
"hammerjs": ">=2.0.0"
},
"devDependencies": {
"browserify": "^8.0.3",
"browserify-shim": "^3.8.2",
"finalhandler": "^0.3.2",
"grunt": "^0.4.5",
"grunt-browserify": "^3.2.1",
"grunt-concurrent": "^1.0.0",
"grunt-contrib-copy": "^0.7.0",
"grunt-contrib-requirejs": "^0.4.4",
"grunt-contrib-uglify": "^0.6.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-jsdoc": "^0.5.7",
"grunt-nodemon": "^0.3.0",
"grunt-webpack": "^1.0.8",
"serve-static": "^1.7.1",
"uglify-save-license": "^0.4.1",
"webpack": "^1.4.15",
"webpack-dev-server": "^1.7.0"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browser": {
"angular-hammer": "./angular.hammer.js"
},
"browserify-shim": {
"angular": {
"exports": "angular"
}
}
}