-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.31 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.31 KB
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
{
"name": "comets",
"version": "1.2.1",
"description": "pet project about astreoids and gravity",
"scripts": {
"build": "webpack --mode production",
"clean": "rm -r build/*",
"start": "browser-sync start --server \"build/\" --no-ui --files \"source/**/*.js\"",
"test": "eslint source/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sFlcn/comets.git"
},
"keywords": [
"javascript",
"canvas"
],
"author": "sFlcn",
"license": "MIT",
"bugs": {
"url": "https://github.com/sFlcn/comets/issues"
},
"homepage": "https://github.com/sFlcn/comets#readme",
"devDependencies": {
"browser-sync": "^2.27.10",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"not dead",
"Firefox ESR",
"not ie <= 11"
],
"eslintConfig": {
"env": {
"browser": true,
"es2021": true
},
"extends": [
"airbnb-base"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
}
}
}