-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 874 Bytes
/
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
{
"name": "rollup-brunch",
"version": "0.3.0",
"type": "module",
"description": "Plugin for brunch.io that uses rollupjs for packaging.",
"author": "Ingo Struck (https://www.ingo-struck.de/)",
"homepage": "https://github.com/istr/rollup-brunch",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:istr/rollup-brunch.git"
},
"bugs": {
"url": "https://github.com/istr/rollup-brunch/issues"
},
"keywords": [
"es6",
"modules",
"rollup",
"bundle",
"browser"
],
"engines": {
"node": ">=18.20.4"
},
"scripts": {
"lint": "npx eslint index.js",
"mocha": "npx mocha",
"test": "npm run lint && npm run mocha"
},
"dependencies": {
"rollup": "4.29.1"
},
"devDependencies": {
"chai": "5.1.2",
"eslint": "9.17.0",
"globals": "15.14.0",
"mocha": "11.0.1"
}
}