This repository was archived by the owner on Jul 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.92 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
87
88
{
"name": "@wavevision/sprites-constants-generator-plugin",
"version": "4.0.5",
"description": "Webpack plugin to generate PHP constants from SVG sprite symbol IDs.",
"main": "dist/index.js",
"types": "dist",
"files": [
"dist"
],
"author": "Wavevision s.r.o. <info@wavevision.com>",
"contributors": [
{
"name": "Vít Rozsíval",
"email": "vit@wavevision.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wavevision/sprites-constants-generator-plugin.git"
},
"bugs": {
"url": "https://github.com/wavevision/sprites-constants-generator-plugin/issues"
},
"homepage": "https://github.com/wavevision/sprites-constants-generator-plugin",
"dependencies": {
"@wavevision/ts-utils": "^1.0.0",
"cheerio": "^1.0.0-rc.3",
"handlebars": "^4.5.1",
"json-schema": "^0.2.5",
"lodash.camelcase": "^4.3.0",
"schema-utils": "^3.0.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.22",
"@types/jest": "^26.0.15",
"@types/lodash.camelcase": "^4.3.6",
"@types/node": "^12",
"@types/svg-sprite-loader": "^3.9.2",
"@types/webpack": "^4.41.24",
"@types/webpack-dev-server": "^3.11.0",
"@types/webpack-env": "^1.15.3",
"@wavevision/coding-standard": "^6.0.2",
"eslint": "^7.12.1",
"eslint-plugin-jest": "^24",
"jest": "^26.6.1",
"npm-run-all": "^4.1.5",
"svg-sprite-loader": "^5.0.0",
"ts-jest": "^26.4.3",
"ts-loader": "^8.0.7",
"ts-node": "^9.0.0",
"typescript": "^4.0.5",
"webpack": "^4.44.2",
"webpack-cli": "^4.1.0"
},
"peerDependencies": {
"@types/node": "^12",
"@types/webpack": "^4",
"svg-sprite-loader": "^5",
"svgxuse": "^1",
"webpack": "^4"
},
"scripts": {
"build": "NODE_ENV=production run-s clean ts-build template",
"ci": "run-s ts-check eslint prettier test-coverage",
"clean": "rm -rf dist/*",
"eslint": "eslint src tests --cache --ext .ts",
"eslint-fix": "yarn eslint --fix",
"fix": "run-s ts-check eslint-fix prettier-fix test",
"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 '**/*.{js,json,md,ts}' --check",
"prettier-fix": "yarn prettier --write",
"prepare": "npm run build",
"preversion": "yarn fix",
"template": "cp src/template.hbs dist",
"test": "jest --runInBand",
"test-coverage": "yarn test --coverage",
"ts": "tsc",
"ts-build": "yarn ts --project tsconfig.build.json",
"ts-check": "yarn ts --noEmit",
"webpack": "run-s build webpack-build",
"webpack-build": "webpack --config tests/webpack.config.ts"
}
}