This repository has been archived by the owner on Jul 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.64 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": "@wavevision/nette-webpack",
"version": "2.0.0",
"description": "Webpack adapter for Nette framework.",
"keywords": [
"nette",
"webpack",
"adpater",
"extension"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wavevision/nette-webpack.git"
},
"author": "Wavevision s.r.o <info@wavevision.com>",
"contributors": [
{
"name": "Vít Rozsíval",
"email": "vit@wavevision.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/wavevision/nette-webpack/issues"
},
"homepage": "https://github.com/wavevision/nette-webpack",
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/mini-css-extract-plugin": "^2.4.0",
"@types/node": "^12.19.3",
"@types/webpack": "^5.28.0",
"@wavevision/coding-standard": "^6.0.2",
"clean-webpack-plugin": "^4.0.0",
"coveralls": "^3.0.9",
"cross-env": "^7.0.0",
"css-loader": "^6.4.0",
"eslint": "^7.12.1",
"eslint-plugin-jest": "^24",
"jest": "^26.6.1",
"mini-css-extract-plugin": "^2.4.2",
"npm-run-all": "^4.1.5",
"ts-jest": "^26.4.3",
"ts-loader": "^9.2.6",
"ts-node": "^9.0.0",
"typescript": "^4.0.5",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@types/webpack-manifest-plugin": "^3.0.5",
"neon-js": "^1.1.2",
"webpack-manifest-plugin": "^4.0.2"
},
"peerDependencies": {
"@types/node": ">=12",
"webpack": "^5"
},
"scripts": {
"build": "NODE_ENV=production run-s clean ts-build",
"ci": "run-s ts eslint prettier test-coverage-report",
"clean": "rm -rf dist/*",
"eslint": "eslint src/assets --cache --ext .ts",
"eslint-fix": "yarn eslint --fix",
"fix": "run-s ts eslint-fix prettier-fix test",
"make": "make fix",
"postversion": "run-s postversion-push-tags postversion-publish postversion-push postversion-echo",
"postversion-echo": "echo \"Successfully released version $npm_package_version!\"",
"postversion-publish": "yarn publish --access public --new-version $npm_package_version",
"postversion-push": "git push",
"postversion-push-tags": "yarn postversion-push --tags",
"prepare": "npm run build",
"prettier": "prettier '**/*.{md,js,ts}' --check",
"prettier-fix": "yarn prettier --write",
"preversion": "run-s fix make",
"test": "jest --runInBand",
"test-coverage": "yarn test --coverage",
"test-coverage-report": "yarn test-coverage && coveralls < temp/coverage/ts/lcov.info",
"ts": "tsc --noEmit",
"ts-build": "tsc --project tsconfig.build.json"
}
}