This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.69 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
{
"name": "@brixtol/rollup-utils",
"version": "1.2.1",
"description": "Rollup plugin utilities for working with the Brixtol Textiles monorepo codebase",
"author": {
"name": "Νίκος Σαβίδης ",
"email": "n@brixtol.com",
"url": "https://brixtoltextiles.com"
},
"license": "MIT",
"types": "package/index.d.ts",
"main": "package/index.js",
"exports": {
"require": "./package/index.js",
"import": "./package/index.mjs"
},
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/BRIXTOL/rollup-utils"
},
"bugs": {
"url": "https://github.com/BRIXTOL/rollup-utils/issues"
},
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c --environment prod",
"test": "ava --color --verbose --watch --timeout=2m",
"postpublish": "pnpm up @brixtol/rollup-config -r"
},
"prettier": "@brixtol/prettier-config",
"eslintConfig": {
"ignorePatterns": "package",
"extends": "@brixtol/eslint-config"
},
"ava": {
"require": [
"esm"
],
"files": [
"./test/*"
]
},
"release": {
"branches": [
"master",
"next"
]
},
"devDependencies": {
"@brixtol/prettier-config": "workspace:*",
"@rollup/plugin-commonjs": "^21.0.0",
"@types/jsonminify": "^0.4.1",
"ava": "^3.15.0",
"esm": "^3.2.25",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"chalk": "^4.1.2",
"dotenv": "^10.0.0",
"fs-extra": "^10.0.0",
"jsonminify": "^0.4.1",
"strip-indent": "^4.0.0",
"strip-json-comments": "^4.0.0",
"types-eslintrc": "^1.0.3",
"types-json": "^1.2.2"
}
}