-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.25 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
{
"name": "voltage.js",
"version": "1.0.8",
"main": "dist/js/voltage.js",
"files": [
"dist"
],
"author": "murshidazher <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/murshidazher/voltage.js.git"
},
"keywords": [
"voltage",
"online",
"offline",
"status",
"internet",
"web status"
],
"homepage": "https://murshidazher.github.io/voltage.js/",
"scripts": {
"start": "webpack --config webpack.config.js",
"dev": "gulp watch",
"build": "gulp build",
"tasks": "gulp --tasks",
"precommit": "lint-staged",
"test": "jest --ci --coverage --passWithNoTests && codecov",
"release": "auto shipit --base-branch=main",
"example:start": "cd example && yarn run start",
"example:build": "cd example && yarn run build"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"auto": "~10.4.2",
"autoprefixer": "^8.2.0",
"babel-loader": "8.1.0",
"browser-sync": "^2.23.6",
"codecov": "~3.8.1",
"commitizen": "~2.9.3",
"cz-conventional-changelog": "~1.2.0",
"del": "^3.0.0",
"eslint": "7.11.0",
"eslint-config-airbnb-base": "11.1.3",
"eslint-plugin-import": "2.2.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-cssnano": "^2.1.3",
"gulp-modernizr": "^2.0.1",
"gulp-postcss": "^7.0.1",
"gulp-rename": "^2.0.0",
"gulp-rev": "^8.1.1",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.0",
"gulp-usemin": "^0.3.29",
"gulp-watch": "^5.0.0",
"husky": "~0.14.3",
"jest": "26.6.0",
"lint-staged": "^4.0.1",
"postcss-hexrgba": "^1.0.0",
"postcss-import": "^11.1.0",
"postcss-mixins": "^6.2.0",
"postcss-nested": "^3.0.0",
"postcss-simple-vars": "^4.1.0",
"prettier": "^1.5.2",
"webpack": "4.44.2",
"webpack-cli": "^4.7.2"
},
"engines": {
"node": ">=10"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"lint-staged": {
"*.{js,css,html}": [
"prettier --write --config .prettierrc",
"git add"
]
}
}