-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 loc) · 2.18 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
{
"name": "@marko/webpack",
"description": "a Marko plugin and loader for Webpack",
"version": "10.0.1",
"bugs": "https://github.com/marko-js/webpack/issues",
"dependencies": {
"escape-string-regexp": "^4.0.0",
"loader-utils": "^2.0.0",
"sort-keys": "^4.2.0",
"tslib": "^2.1.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@marko/compiler": "^5.37.0",
"@types/jest": "^26.0.20",
"@types/loader-utils": "^2.0.1",
"@types/node": "^14.14.22",
"@types/webpack": "^4.41.26",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"coveralls": "^3.1.0",
"css-loader": "^5.0.1",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jest": "^24.1.3",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jest-file-snapshot": "0.3.8",
"lint-staged": "^10.5.3",
"marko": "^5.35.0",
"memory-fs": "^0.5.0",
"mini-css-extract-plugin": "^1.3.5",
"prettier": "^2.2.1",
"standard-version": "^9.1.0",
"style-loader": "^2.0.0",
"tapable": "^1.1.3",
"ts-jest": "^26.5.0",
"typescript": "^4.1.3",
"webpack": "^4.47.0",
"webpack5": "npm:webpack@^5.91.0"
},
"files": [
"dist",
"components",
"loader.js",
"plugin.js",
"marko.json"
],
"homepage": "https://github.com/marko-js/webpack",
"keywords": [
"loader",
"marko",
"plugin",
"webpack"
],
"license": "MIT",
"peerDependencies": {
"marko": "^5.7.0",
"webpack": "^4 || ^5"
},
"repository": {
"type": "git",
"url": "https://github.com/marko-js/webpack"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"ci:report": "cat coverage/lcov.info | coveralls",
"ci:test": "jest --ci --coverage",
"format": "prettier \"**/*.{json,md,js,ts}\" --write",
"lint": "tsc --noEmit && eslint -f codeframe './src/**/*.ts'",
"prepublishOnly": "npm run build",
"release": "standard-version",
"test": "jest --runInBand --detectOpenHandles",
"test:inspect": "node --inspect $(which jest) --watch --runInBand --testTimeout 99999999"
},
"types": "dist/index.d.ts"
}