-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.1 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
70
71
{
"name": "ui-grid-custom-scroller",
"version": "1.0.2",
"description": "A custom scroller for UI-Grid that takes over default scrolling logic on touch events.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git commit -am \"chore(CHANGELOG): Updating Changelog\"",
"test": "grunt",
"release": "npm run changelog && git push && git push --tags && npm publish ./",
"postversion": "npm test && npm run release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mportuga/ui-grid-custom-scroller.git"
},
"keywords": [
"angular",
"scroller",
"ui-grid"
],
"author": "Marcelo S. Portugal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mportuga/ui-grid-custom-scroller/issues"
},
"homepage": "https://github.com/mportuga/ui-grid-custom-scroller#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"commit-msg": "validate-commit-msg",
"post-merge": "npm install",
"post-rewrite": "npm install"
}
},
"dependencies": {
"angular": "^1.5.0",
"angular-animate": "^1.5.0",
"angular-touch": "^1.5.0",
"angular-ui-grid": "^4.0.0"
},
"devDependencies": {
"angular-mocks": "^1.5.0",
"cz-conventional-changelog": "^1.2.0",
"grunt": "^1.0.1",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-jscs": "^3.0.1",
"grunt-karma": "^2.0.0",
"grunt-ngdocs": "^0.2.10",
"jasmine": "^2.5.2",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-spec-reporter": "0.0.26",
"load-grunt-configs": "^1.0.0",
"load-grunt-tasks": "^3.5.2",
"time-grunt": "^1.4.0",
"validate-commit-msg": "^2.8.2"
}
}