-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.22 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.22 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@pangolinjs/core",
"version": "6.1.2",
"description": "Framework for componentized front end development with Nunjucks, Sass, and JavaScript",
"license": "Hippocratic-3.0",
"author": {
"name": "Fynn Becker",
"email": "post@fynn.be"
},
"homepage": "https://pangolinjs.org",
"repository": {
"type": "git",
"url": "https://github.com/pangolinjs/core"
},
"bugs": {
"url": "https://github.com/pangolinjs/core/issues",
"email": "post@fynn.be"
},
"files": [
"bin",
"commands",
"lib",
"theme",
"webpack"
],
"type": "module",
"engines": {
"node": ">=15",
"npm": ">=7"
},
"scripts": {
"lint:js": "eslint \"**/*.js\"",
"lint:css": "stylelint **/*.scss",
"test:unit": "c8 --reporter text --reporter html --all ava",
"release": "standard-version --sign"
},
"bin": {
"pangolin-core": "bin/pangolin-core.js"
},
"dependencies": {
"@frctl/fractal": "^1.5.13",
"@frctl/mandelbrot": "^1.10.1",
"@frctl/nunjucks": "^2.0.14",
"@nuxt/friendly-errors-webpack-plugin": "^2.5.2",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"cssnano": "^5.1.7",
"kleur": "^4.1.4",
"mini-css-extract-plugin": "^2.6.0",
"postcss-loader": "^6.2.1",
"resolve-url-loader": "^5.0.0",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"webpack": "^5.72.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-chain": "^6.5.1",
"webpack-dev-server": "^4.8.1",
"webpack-manifest-plugin": "^5.0.0",
"webpackbar": "^5.0.2"
},
"peerDependencies": {
"@babel/core": "^7.17.0",
"postcss": "^8.3.6",
"sass": "^1.38.1"
},
"devDependencies": {
"@babel/preset-env": "^7.17.10",
"@pangolinjs/eslint-config": "^6.0.0",
"@pangolinjs/stylelint-config": "^3.0.1",
"autoprefixer": "^10.4.7",
"ava": "^4.2.0",
"c8": "^7.11.2",
"core-js": "^3.22.4",
"eslint": "^8.14.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-ava": "^13.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"standard-version": "^9.3.2",
"stylelint": "^14.8.1",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.2.0"
}
}