-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.79 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
{
"private": true,
"engines": {
"node": ">=11"
},
"dependencies": {
"chai": "^4.2.0",
"dependency-tree": "^7.0.2",
"lodash-es": "^4.17.11",
"mocha": "^6.0.2"
},
"browserslist": [
"last 3 versions",
"> 1%"
],
"scripts": {
"build": "node -r esm build.js",
"serve": "live-server dist --port=\"8082\"",
"test": "node -r esm ./test.js"
},
"devDependencies": {
"autoprefixer": "^9.4.2",
"cssnano": "^4.1.7",
"del": "^3.0.0",
"dotenv": "^6.1.0",
"eslint": "^5.6.1",
"esm": "^3.2.18",
"gulp": "^4.0.0",
"gulp-debug": "^4.0.0",
"gulp-eslint": "^5.0.0",
"gulp-htmlmin": "^5.0.1",
"gulp-imagemin": "^5.0.3",
"gulp-insert": "^0.5.0",
"gulp-postcss": "^8.0.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-template": "^5.0.0",
"html-webpack-plugin": "^3.2.0",
"live-server": "^1.2.1",
"mochawesome": "^3.1.1",
"parcel-bundler": "^1.10.3",
"postcss-import": "^12.0.1",
"postcss-modules": "^1.4.1",
"postcss-normalize": "^7.0.1",
"postcss-preset-env": "^6.5.0",
"postcss-scss": "^2.0.0",
"precss": "^4.0.0",
"selenium-webdriver": "^4.0.0-alpha.1",
"string-to-stream": "^1.1.1",
"vinyl": "^2.2.0",
"vinyl-buffer": "^1.0.1",
"vinyl-named": "^1.1.0",
"vinyl-source-stream": "^2.0.0",
"webpack": "^4.29.6"
},
"//a": "This is for the server & client-building code only; browser code is linted in build.js",
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2018
},
"extends": "eslint:recommended",
"rules": {
"no-unused-vars": 0,
"no-console": 0,
"no-mixed-spaces-and-tabs": 0
}
},
"eslintIgnore": [
"ignored/",
"peers/"
]
}