forked from Simounet/LeedVibes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.27 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
{
"name": "leedvibes",
"version": "1.0.0",
"type": "module",
"browserslist": [
"defaults"
],
"scripts": {
"lint": "./node_modules/.bin/stylelint sass/style.scss && ./node_modules/.bin/eslint js/script.js && ./node_modules/.bin/eslint tests/index.js",
"deps:update": "cp node_modules/normalize.css/normalize.css css/normalize.css && cp node_modules/jquery/dist/jquery.min.js js/ && cp node_modules/mousetrap/mousetrap.min.js js/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Simounet/LeedVibes.git"
},
"author": "Simounet",
"license": "MIT",
"bugs": {
"url": "https://github.com/Simounet/LeedVibes/issues"
},
"homepage": "https://github.com/Simounet/LeedVibes#readme",
"devDependencies": {
"eslint": "^8.43.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"gulp": "4.x",
"gulp-autoprefixer": "^9.0.0",
"gulp-sass": "5.x",
"gulp-sourcemaps": "3.x",
"normalize.css": "^8.0.1",
"sass": "^1.69.7",
"stylelint": "^16.1.0",
"stylelint-config-standard-scss": "^13.0.0"
},
"dependencies": {
"jquery": "^3.7.0",
"mousetrap": "^1.6.5"
}
}