This repository has been archived by the owner on Oct 6, 2023. It is now read-only.
generated from shgysk8zer0/template-basic
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.8 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
{
"name": "template-basic",
"version": "1.0.0",
"private": true,
"description": "A fairly bare-bones template repository",
"config": {
"serve": {
"domain": "localhost",
"path": "./",
"port": 8000
},
"dir": {
"css": "css/",
"js": "js/",
"img": "img/",
"html": "./"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/shgysk8zer0/template-basic.git"
},
"keywords": [
"static",
"template",
"ecmascript",
"javascript",
"css",
"svg",
"icons"
],
"author": "Chris Zuber <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shgysk8zer0/template-basic/issues"
},
"homepage": "https://github.com/shgysk8zer0/template-basic",
"scripts": {
"preinstall": "git submodule update --recursive --init",
"start": "http-server ${npm_package_config_serve_path} -p ${npm_package_config_serve_port} -a ${npm_package_config_serve_domain} -o",
"test": "npm run lint:js && npm run lint:css",
"fix": "npm run fix:js && npm run fix:css",
"build": "npm run build:icons",
"build:icons": "svg-sprite-generate -c icons.csv -o img/icons.svg",
"lint:css": "stylelint ${npm_package_config_dir_css}",
"lint:js": "eslint ${npm_package_config_dir_js}",
"fix:css": "stylelint ${npm_package_config_dir_css} --fix",
"fix:js": "eslint ${npm_package_config_dir_js} --fix"
},
"dependencies": {
"svg-sprite-generator": "0.0.7"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-babel": "^5.3.0",
"http-server": "^0.11.1",
"stylelint": "^10.0.1",
"stylelint-config-recommended": "^2.2.0",
"stylelint-config-standard": "^18.3.0",
"svgo": "^1.2.2"
}
}