-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
52 lines (52 loc) · 1.19 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
{
"name": "grunt-rollup",
"description": "Grunt plugin for rollup - next-generation ES6 module bundler",
"version": "12.0.0",
"homepage": "https://github.com/chrisprice/grunt-rollup",
"author": {
"name": "Chris Price",
"email": "price.c@gmail.com",
"url": "http://chrisprice.io"
},
"maintainers": [
"GMartigny"
],
"repository": {
"type": "git",
"url": "git://github.com/chrisprice/grunt-rollup.git"
},
"bugs": {
"url": "https://github.com/chrisprice/grunt-rollup/issues"
},
"license": "MIT",
"engines": {
"node": ">=12"
},
"scripts": {
"lint": "eslint \"**/*.js\"",
"test": "ava"
},
"eslintConfig": {
"extends": "@gmartigny/eslint-config"
},
"devDependencies": {
"@gmartigny/eslint-config": "^2.1.0",
"ava": "^3.15.0",
"eslint": "^8.14.0",
"grunt": "^1.5.2"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"keywords": [
"gruntplugin",
"rollup",
"bundler",
"packager",
"build",
"tool"
],
"dependencies": {
"rollup": "^2.71.1"
}
}