-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.42 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.42 KB
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
{
"name": "nativejs-select",
"version": "1.0.7",
"description": "Customizable select with vanilla js",
"license": "MIT",
"scripts": {
"test": "jest",
"dev": "npm-run-all --parallel webpack bs",
"build": "webpack",
"webpack": "webpack --watch",
"bs": "browser-sync start --config bs-config.js"
},
"husky": {
"hooks": {
"pre-commit": "yarn test"
}
},
"main": "build/nativejs-select.min.js",
"author": "Valyaev Rustam",
"keywords": [
"select",
"custom-select",
"select-custom",
"js-select",
"select-js",
"plugin"
],
"repository": {
"type": "git",
"url": "https://github.com/FrontendMetis/nativejs-select.git"
},
"bugs": {
"url": "https://github.com/FrontendMetis/nativejs-select/issues"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@types/jest": "^24.0.25",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"browser-sync": "^2.26.7",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^24.9.0",
"jest-serializer-html": "^7.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"ts-jest": "^24.2.0",
"ts-loader": "^6.2.1",
"typescript": "^4.0.2",
"webpack": "^4.41.3",
"webpack-cli": "^3.3.10"
},
"dependencies": {}
}