-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
86 lines (86 loc) · 2.61 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@marko/rollup",
"description": "A Marko plugin for Rollup",
"version": "4.0.3",
"author": "Dylan Piercey <dpiercey@ebay.com>",
"bugs": "https://github.com/marko-js/rollup/issues",
"dependencies": {
"tslib": "^2.1.0"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@marko/compiler": "^5.27.10",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@types/jest": "^29.5.1",
"@types/node": "^20.2.1",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"codecov": "^3.8.1",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-prettier": "^3.3.1",
"fixpack": "^4.0.0",
"husky": "^4.3.8",
"jest": "^29.5.0",
"jest-file-snapshot": "0.3.8",
"lint-staged": "^10.5.4",
"marko": "^5.25.14",
"postcss": "^8.4.23",
"prettier": "^2.2.1",
"rollup": "^3.22.0",
"rollup-plugin-postcss": "^4.0.2",
"standard-version": "^9.1.1",
"ts-jest": "^29.1.0",
"typescript": "^4.2.3"
},
"exports": {
".": {
"import": "./dist/esm/index.js",
"default": "./dist/cjs/index.js"
},
"./components/rollup-watch.marko": "./components/rollup-watch.marko",
"./components/rollup.marko": "./components/rollup.marko"
},
"files": [
"marko.json",
"components",
"dist/cjs",
"dist/esm"
],
"homepage": "https://github.com/marko-js/rollup",
"keywords": [
"loader",
"marko",
"plugin",
"rollup",
"transform"
],
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"peerDependencies": {
"@marko/compiler": "^5",
"rollup": "^2 || ^3"
},
"repository": {
"type": "git",
"url": "https://github.com/marko-js/rollup"
},
"scripts": {
"build": "rm -rf ./dist && tsc -b && node prepend-file-vars.mjs && echo '{\"type\":\"module\"}' > dist/esm/package.json",
"ci:report": "codecov",
"ci:test": "jest --ci --coverage",
"format": "npm run lint:eslint -- --fix && npm run lint:prettier -- --write && (fixpack || true)",
"lint": "npm run build && npm run lint:eslint && npm run lint:prettier -- -l && fixpack",
"lint:eslint": "eslint -f visualstudio .",
"lint:prettier": "prettier \"**/*{.ts,.js,.json,.md,.yml,rc}\"",
"prepublishOnly": "npm run build",
"release": "standard-version",
"test": "jest --watch",
"test:inspect": "node --inspect=0.0.0.0 $(which jest) --watch --runInBand --testTimeout 99999999"
},
"types": "dist/esm/index.d.ts"
}