forked from kappys1/js-accordion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
135 lines (135 loc) · 3.87 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "js-accordion",
"version": "0.0.0-development",
"description": "A light foundation for your next frontend project based on webpack.",
"homepage": ".",
"main": "dist/lib/js/js-accordion.min.js",
"files": [
"js",
"css",
"package.json",
"CHANGELOG.md",
"README.md"
],
"scripts": {
"build": "npm run build:lib && npm run build:doc",
"build:lib": "NODE_ENV=production webpack --config webpack/webpack.config.lib.js --colors",
"build:doc": "NODE_ENV=production webpack --config webpack/webpack.config.prod.js --colors",
"start": "webpack-dev-server --open --config webpack/webpack.config.dev.js",
"test": "jest --coverage",
"report-coverage": "cat ./coverage/lcov.info | coveralls --verbose ",
"semantic-release": "semantic-release",
"commit": "npx git-cz"
},
"repository": {
"type": "git",
"url": "https://github.com/kappys1/js-accordion.git"
},
"keywords": [
"accordion",
"accordion-js",
"frontend",
"es6",
"vanilla",
"javascript",
"js",
"webpack"
],
"author": "Alex Marcos Gutierrez",
"license": "MIT",
"bugs": {
"url": "https://github.com/kappys1/js-accordion/issues"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"git add"
]
},
"jest": {
"moduleNameMapper": {
"\\.(css|less|scss|sss|styl)$": "<rootDir>/node_modules/jest-css-modules"
},
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 95,
"lines": 95,
"statements": 95
}
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": "conventional-commit-types",
"helpMessage": "Use \"npm run commit\" instead, we use conventional-changelog format :) (https://github.com/commitizen/cz-cli)"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.2",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/git": "^7.0.16",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.5",
"babel-plugin-add-module-exports": "^1.0.2",
"clean-webpack-plugin": "^2.0.2",
"copy-pkg-json-webpack-plugin": "0.0.38",
"copy-webpack-plugin": "^5.0.4",
"coveralls": "^3.0.6",
"css-loader": "^3.0.0",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.1.0",
"eslint-config-standard": "^14.0.1",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^4.0.0",
"html-webpack-plugin": "^4.0.0-beta.5",
"husky": "^3.0.4",
"jest": "^24.9.0",
"jest-css-modules": "^2.1.0",
"lint-staged": "^9.2.3",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"prettier": "^1.18.2",
"sass-loader": "^7.1.0",
"semantic-release": "^15.13.24",
"style-loader": "^0.23.1",
"stylelint": "^10.1.0",
"stylelint-prettier": "^1.1.1",
"stylelint-scss": "^3.9.4",
"stylelint-selector-bem-pattern": "^2.1.0",
"travis-deploy-once": "^5.0.11",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^4.2.1"
},
"dependencies": {}
}