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
84 lines (84 loc) · 2.83 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
{
"name": "@wavevision/dependent-selectbox",
"version": "3.0.5",
"description": "Dependent selectbox component for Nette forms.",
"main": "dist/dependentSelectBox.js",
"files": [
"dist"
],
"types": "dist",
"repository": {
"type": "git",
"url": "git+https://github.com/wavevision/dependent-selectbox.git"
},
"author": "Wavevision s.r.o <info@wavevision.com>",
"contributors": [
{
"name": "Jakub Filla",
"email": "jakub.filla@wavevision.com"
},
{
"name": "Vít Rozsíval",
"email": "vit@wavevision.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/wavevision/dependent-selectbox/issues"
},
"homepage": "https://github.com/wavevision/dependent-selectbox",
"devDependencies": {
"@babel/core": "^7.12.3",
"@types/jest": "^26.0.15",
"@types/terser-webpack-plugin": "^4.2.0",
"@types/vfile-message": "^2.0.0",
"@types/webpack": "^4.41.24",
"@wavevision/coding-standard": "^6.0.2",
"babel-jest": "^26",
"clean-webpack-plugin": "^3.0.0",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"dts-bundle-generator": "^5.4.0",
"eslint": "^7.12.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-jest": "^24",
"jest": "^26.6.1",
"naja": "^2.1.5",
"npm-run-all": "^4.1.5",
"terser-webpack-plugin": "^4.2.3",
"ts-jest": "^26.4.3",
"ts-loader": "^8.0.7",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.0.5",
"webpack": "^4.44.2",
"webpack-cli": "^4.1.0"
},
"peerDependencies": {
"naja": "^2"
},
"scripts": {
"build": "run-s ts-webpack ts-dts",
"ci": "run-s eslint prettier test-coverage-report",
"eslint": "eslint '**/*.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",
"prettier": "prettier --check '**/*.{md,ts}'",
"prettier-fix": "yarn prettier --write",
"preversion": "run-s make fix build",
"test": "jest",
"test-coverage": "yarn test --coverage",
"test-coverage-report": "yarn test-coverage && coveralls < temp/coverage/ts/lcov.info",
"ts": "tsc --project tsconfig.json",
"ts-dts": "run-s ts-dts-config ts-dts-generate",
"ts-dts-config": "tsc --project webpack/tsconfig.dts.config.json",
"ts-dts-generate": "dts-bundle-generator --config webpack/dts.config.js",
"ts-webpack": "cross-env TS_NODE_PROJECT=\"webpack/tsconfig.json\" webpack --config webpack/config.ts"
}
}