-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 2.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
{
"author": "Daine (https://daine.dev)",
"bugs": "https://github.com/rp-magrathea/kamino/issues",
"dependencies": {
"@cloudfour/simple-svg-placeholder": "^1.0.2",
"@frctl/fractal": "^1.3.0",
"autoprefixer": "^10.0.1",
"postcss": "^8.1.1",
"postcss-cli": "^8.1.0",
"postcss-extend-rule": "^3.0.0",
"postcss-import": "^12.0.1"
},
"description": "Setup template for forum roleplay theming projects",
"devDependencies": {
"@rp-magrathea/stylelint-alphabetical-clockwise-order": "rp-magrathea/stylelint-alphabetical-clockwise-order.git#semver:^1.0.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"faker": "^5.1.0",
"htmlhint": "^0.14.1",
"prettier": "^2.1.2",
"stylelint": "^13.7.2",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-no-unsupported-browser-features": "^4.0.0",
"stylelint-order": "^4.1.0"
},
"homepage": "https://github.com/rp-magrathea/kamino#readme",
"keywords": [
"jcink",
"theme",
"forum-rpg",
"rpg"
],
"license": "SEE LICENSE IN LICENSE",
"name": "kamino",
"repository": "github:rp-magrathea/kamino",
"scripts": {
"build": "npm run-script prettier:write && npm run-script postcss:run && npm run-script fractal:build",
"build-lint": "npm run-script lint && npm run-script build",
"dev": "npm run-script postcss:watch & npm run-script fractal:start",
"fractal:build": "fractal build",
"fractal:start": "fractal start --sync",
"lint": "( exit_code=0 ; npm run-script lint:css-error || exit_code=$? ; npm run-script lint:html || exit_code=$? ; npm run-script lint:js || exit_code=$? ; (( $exit_code == 0 )) )",
"lint:css": "npx stylelint --config tools/.stylelintrc.yml --ignore-path tools/.stylelintignore \"{src,dist}/**/*.{css,html,js}\" --allow-empty-input",
"lint:css-error": "npm run-script lint:css -- --quiet",
"lint:css-warning": "npm run-script lint:css",
"lint:html": "npx htmlhint --config tools/.htmlhintrc \"{src,dist}/**/*.{html,hbs,js}\"",
"lint:js": "npx eslint --config tools/.eslintrc.yml --no-error-on-unmatched-pattern \"dist/**/*.js\"",
"postcss:run": "npx postcss --config tools src/components/stylesheet.css -o dist/assets/stylesheet.css",
"postcss:watch": "npm run-script postcss:run -- --watch",
"prettier:base": "npx prettier --config tools/.prettierrc.yml --ignore-path tools/.prettierignore",
"prettier:check": "npm run-script prettier:base -- --check .",
"prettier:write": "npm run-script prettier:base -- --write .",
"target-browsers": "npx browserslist"
},
"version": "1.4.1"
}