This repository has been archived by the owner on Mar 16, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 2.28 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
{
"name": "@wppconnect-team/loader",
"version": "1.0.5",
"description": "",
"main": "dist/loader.js",
"types": "dist/loader.d.js",
"scripts": {
"changelog:last": "conventional-changelog -p angular -r 2",
"changelog:preview": "conventional-changelog -p angular -u",
"changelog:update": "conventional-changelog -p angular -i CHANGELOG.md -s",
"compile:dev": "webpack --mode development && npm run generate-dts",
"compile:prod": "webpack --mode production && npm run generate-dts",
"compile:watch": "webpack --mode development --watch",
"generate-dts": "dts-bundle-generator -o dist/loader.d.ts src/index.ts",
"license:add": "license-check-and-add add",
"license:check": "license-check-and-add check",
"lint": "npx eslint -c .eslintrc.js --ext .ts src",
"prepare": "husky install && npm run compile:prod",
"release": "release-it",
"serve:dev": "webpack serve --mode development",
"serve:prod": "webpack serve --mode production",
"serve:watch": "webpack serve --mode development --progress --watch"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/wppconnect-team/wppconnect-loader.git"
},
"author": "wppconnect-team",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/wppconnect-team/wppconnect-loader/issues"
},
"homepage": "https://github.com/wppconnect-team/wppconnect-loader#readme",
"devDependencies": {
"@commitlint/cli": "^14.1.0",
"@commitlint/config-angular": "^14.1.0",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"clean-webpack-plugin": "^4.0.0",
"commitizen": "^4.2.3",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "^3.3.0",
"dts-bundle-generator": "^5.9.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^4.0.0",
"events": "^3.3.0",
"husky": "^7.0.2",
"license-check-and-add": "^4.0.2",
"prettier": "^2.2.1",
"release-it": "^14.4.1",
"trim-newlines": "^4.0.2",
"ts-loader": "^9.0.2",
"typescript": "^4.2.2",
"webpack": "^5.17.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^4.0.0"
}
}