-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.62 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
{
"name": "@ajamal_khan/custom-select",
"version": "0.0.0-development",
"description": "A lightweight library to create custom select tag",
"main": "dist/main.js",
"scripts": {
"commit": "cz",
"build": "webpack --mode production",
"dev": "webpack --mode development -w",
"test": "echo \"Error: no test specified. Add tests.\"",
"dry-release": "semantic-release --dry-run",
"semantic-release": "semantic-release"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main",
"next",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
]
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/khan-ajamal/custom-select.git"
},
"keywords": [
"custom-select"
],
"author": "Ajamal Khan <ajamalkhan65@gmail.com> (https://ajamalkhan.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/khan-ajamal/custom-select/issues"
},
"homepage": "https://github.com/khan-ajamal/custom-select#readme",
"devDependencies": {
"@babel/core": "^7.12.17",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/preset-env": "^7.12.17",
"babel-loader": "^8.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"prettier": "^2.2.1",
"semantic-release": "^17.3.9",
"webpack": "^5.23.0",
"webpack-cli": "^4.5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}