-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.37 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
{
"name": "rollup-plugin-glob-files",
"version": "2.0.2",
"description": "Import files matching a glob pattern and export them as an array",
"main": "dist/build.cjs.js",
"module": "dist/build.esm.js",
"typings": "typings/index.d.ts",
"scripts": {
"build": "rollup -c && tsc",
"test": "rollup -c && cd test && rollup -c",
"lint": "prettier --write \"./**\"",
"lint:test": "prettier --check \"./**\"",
"preversion": "npm run test && npm run lint:test && npm run build",
"prepublishOnly": "npm run build"
},
"keywords": [
"glob",
"rollup",
"plugin",
"files"
],
"author": {
"name": "Vehmloewff",
"url": "https://github.com/Vehmloewff"
},
"files": [
"dist/build*",
"typings"
],
"license": "MIT",
"devDependencies": {
"@types/micromatch": "^3.1.1",
"@types/write": "^2.0.0",
"acorn": "^7.1.0",
"prettier": "^1.19.1",
"rollup": "^1.27.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"tslib": "^1.10.0",
"typescript": "^3.7.2",
"zip-tap": "^1.0.4"
},
"homepage": "https://github.com/Vehmloewff/rollup-plugin-glob",
"repository": {
"type": "git",
"url": "https://github.com/Vehmloewff/rollup-plugin-glob"
},
"dependencies": {
"rollup-pluginutils": "^2.8.2",
"simply-get-files": "^1.0.2",
"write": "^2.0.0"
},
"peerDependencies": {
"rollup": "^1.26.3"
}
}