-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 964 Bytes
/
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
{
"name": "murlisgib-website",
"version": "1.0.0",
"description": "Website for the custom CS:GO gamemode Murlisgib",
"main": "index.html",
"scripts": {
"dev": "parcel src/index.html",
"build": "mkdir -p dist/static/ && cp -r src/static/. dist/static/ && parcel build src/index.html --public-url ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Muhlex/Murlisgib-Website.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Muhlex/Murlisgib-Website/issues"
},
"homepage": "https://github.com/Muhlex/Murlisgib-Website#readme",
"devDependencies": {
"autoprefixer": "^9.7.6",
"parcel-bundler": "^1.12.4",
"postcss-modules": "^2.0.0",
"sass": "^1.26.5"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"Firefox ESR",
"not dead",
"not IE 11",
"not ie_mob > 0"
],
"postcss": {
"plugins": {
"autoprefixer": {}
}
}
}