-
Notifications
You must be signed in to change notification settings - Fork 116
/
package.json
119 lines (119 loc) · 3.73 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "grunt-karma",
"version": "3.0.2",
"description": "grunt plugin for karma test runner",
"main": "tasks/grunt-karma.js",
"repository": {
"type": "git",
"url": "https://github.com/karma-runner/grunt-karma.git"
},
"keywords": [
"gruntplugin",
"karma",
"grunt",
"test",
"unit",
"runner",
"TDD"
],
"scripts": {
"test": "grunt"
},
"author": "Dave Geddes",
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"lodash": "^4.17.10"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/travis-cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/npm": "7.0.5",
"eslint": "^5.4.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^3.1.0",
"expect.js": "^0.3.1",
"grunt": "^1.1.0",
"grunt-bump": "0.8.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-conventional-changelog": "^6.1.0",
"grunt-conventional-github-releaser": "^1.0.0",
"grunt-eslint": "^21.0.0",
"grunt-npm": "0.0.2",
"husky": "^4.2.3",
"karma": "^5.0.1",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "1.x || ^0.2.0",
"load-grunt-tasks": "^3.2.0",
"mocha": "^3.4.2",
"semantic-release": "17.0.4"
},
"peerDependencies": {
"grunt": ">=0.4.x",
"karma": "^4.0.0 || ^5.0.0 || ^6.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"contributors": [
"Dave Geddes <[email protected]>",
"Timo Tijhof <[email protected]>",
"johnjbarton <[email protected]>",
"Julian Motz <[email protected]>",
"Michał Gołębiowski-Owczarek <[email protected]>",
"XhmikosR <[email protected]>",
"Mark Ethan Trostler <[email protected]>",
"dsuckau <[email protected]>",
"Greenkeeper <[email protected]>",
"James Ford <[email protected]>",
"James Forrester <[email protected]>",
"Jeremy Vinai <[email protected]>",
"Jonas Pommerening <[email protected]>",
"Jonny Arnold <[email protected]>",
"Julian <[email protected]>",
"Luis Almeida <[email protected]>",
"Matt Dean <[email protected]>",
"Max Riveiro <[email protected]>",
"Mike Dimmick <[email protected]>",
"Nicolas Breitwieser <[email protected]>",
"Olivier Amblet <[email protected]>",
"Pascal Precht <[email protected]>",
"Robin Hu <[email protected]>",
"Robin Liang <[email protected]>",
"Roman Morozov <[email protected]>",
"Sahat Yalkabov <[email protected]>",
"Valentin Hervieu <[email protected]>",
"Vaughan Hilts <[email protected]>",
"Vlad Filippov <[email protected]>",
"Vojta Jina <[email protected]>",
"enigmak <[email protected]>",
"facboy <[email protected]>",
"jiverson <[email protected]>",
"joshrtay <[email protected]>",
"kolesnik <[email protected]>",
"Adrian <[email protected]>",
"m7r <[email protected]>",
"Alexander Slansky <[email protected]>",
"Alexey Kucherenko <[email protected]>",
"Chris Gross <[email protected]>",
"Chris Wren <[email protected]>",
"Christian Reed <[email protected]>",
"Christoph Kraemer <[email protected]>",
"Daniel Herman <[email protected]>",
"Eddie Monge <[email protected]>"
]
}