-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "elastiq",
"version": "1.0.0",
"description": "company website",
"main": "index.js",
"scripts": {
"start": "parcel ./src/index.html",
"build": "parcel build ./src/*.html --public-url https://www.elastiq.ch",
"test": "npm run build",
"pretest": "npm run lint",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint --ext .js",
"lint:css": "npm run lint:css:scss",
"lint:css:scss": "stylelint 'src/**/*.scss'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meodai/elastiq.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/meodai/elastiq/issues"
},
"homepage": "https://github.com/meodai/elastiq#readme",
"devDependencies": {
"autoprefixer": "^9.7.6",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.3.1",
"postcss-modules": "^2.0.0",
"posthtml": "^0.13.0",
"posthtml-expressions": "^1.3.2",
"posthtml-load-config": "^1.0.0",
"sass": "^1.26.5"
},
"staticFiles": {
"staticPath": "public"
},
"dependencies": {
"parcel-plugin-sitemap": "^2.1.6"
},
"sitemap": {
"siteURL": "https://www.elastiq.ch/",
"exclude": ["googleb38071574b573624.html"]
}
}