-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.6 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
{
"name": "rollup-plugin-globlin",
"version": "0.1.4",
"description": "Rollup plugin that provides file watching, copy, transform, repath and rename capabilities.",
"author": "Nikolas Savvidis <nicos@gmx.com>",
"license": "MIT",
"main": "./package/index.js",
"module": "package/index.es.js",
"types": "index.d.ts",
"private": false,
"keywords": [
"rollup-plugin",
"globs",
"file transforms"
],
"repository": {
"type": "git",
"url": "https://github.com/panoply/rollup-plugin-globlin"
},
"bugs": {
"url": "https://github.com/panoply/rollup-plugin-globlin/issues"
},
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c --environment prod",
"tests": "node ./test/require-specs.js",
"prepack": "rollup -c --environment prod",
"package": "cd versions; pnpm pack ../ && cd ..",
"test": "ava --verbose --watch"
},
"prettier": "@brixtol/prettier-config",
"eslintConfig": {
"extends": [
"@brixtol/eslint-config-javascript"
]
},
"ava": {
"babel": true,
"files": [
"test/**/**"
],
"concurrency": 5
},
"release": {
"branches": [
"master",
"next"
]
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@brixtol/eslint-config-javascript": "^2.1.2",
"@brixtol/prettier-config": "^1.0.3",
"@rollup/plugin-json": "^4.1.0",
"ava": "^3.15.0",
"rollup": "^2.46.0",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"chalk": "^4.1.1",
"chokidar": "^3.5.1",
"fs-extra": "^9.1.0",
"marky": "^1.2.1",
"minimatch": "^3.0.4",
"pretty-ms": "^7.0.1"
}
}