-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 1.83 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
{
"name": "@visbot/webvsc-ui",
"version": "0.8.4",
"description": "Web frontend for webvsc, a converter for Winamp AVS presets",
"author": "Jan T. Sott",
"license": "MIT",
"scripts": {
"build": "npm run clean && npm-run-all --parallel build:*",
"build:css": "gulp build",
"build:js": "webpack --mode production",
"clean": "rimraf ./dist",
"test": "eslint ./src/*.js --ignore-path .gitignore",
"precommit": "npm run test",
"start": "http-server"
},
"repository": {
"type": "git",
"url": "https://github.com/idleberg/webvsc-ui.git"
},
"dependencies": {
"@visbot/webvsc": "^2.2.1",
"file-saver": "^1.3.8",
"jszip": "^3.1.5"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.14.2",
"autoprefixer": "^9.8.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"cssnano": "^4.1.11",
"eslint": "^5.16.0",
"gulp": "^4.0.2",
"gulp-postcss": "^8.0.0",
"http-server": "^0.11.1",
"husky": ">=4.3 <5",
"lint-staged": "^11.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^2.7.1",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"browsers": [
"last 5 versions"
]
}
}
]
],
"env": {
"production": {
"presets": [
"minify"
]
}
}
},
"browserslist": "last 5 versions",
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module"
},
"rules": {
"consistent-return": 0,
"no-console": 0
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}