-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.91 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
{
"name": "decidim-module-iframe",
"version": "0.10.2",
"description": "Mods and tweaks for Decidim",
"main": "index.js",
"directories": {
"example": "examples",
"lib": "lib"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint -c .eslintrc.json --ext .js app/packs/",
"lint-fix": "eslint -c .eslintrc.json --ext .js app/packs/ --fix",
"stylelint": "test -n \"$(find . -type f -name '*.scss')\" && stylelint **/*.scss || echo 'No SCSS files found'",
"stylelint-fix": "test -n \"$(find . -type f -name '*.scss')\" && stylelint **/*.scss --fix || echo 'No SCSS files found'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mainio/decidim-module-iframe.git"
},
"keywords": [
"decidim"
],
"author": "joonas.aapro@mainiotech.fi",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/mainio/decidim-module-iframe/issues"
},
"homepage": "https://github.com/mainio/decidim-module-iframe#readme",
"stylelint": {
"extends": "@decidim/stylelint-config",
"rules": {
"block-opening-brace-space-before": "always"
}
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-classes": "^7.20.7",
"@babel/plugin-transform-regenerator": "^7.20.5",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@decidim/dev": "^0.32.0",
"@decidim/eslint-config": "^0.32.0",
"@decidim/stylelint-config": "^0.32.0",
"eslint-config-prettier": "^8.2.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-standard": "^3.1.0",
"sass-embedded": "~1.57.1"
}
}