-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.59 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": "decidim-module-time_tracker",
"version": "0.5.0",
"description": "A tool for Decidim that allows to track time dedicated by volunteers doing any arbitrary task",
"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": "stylelint app/packs/",
"stylelint-fix": "stylelint app/packs/ --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Platoniq/decidim-module-time_tracker.git"
},
"keywords": [
"decidim"
],
"author": "ivan@platoniq.net",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Platoniq/decidim-module-time_tracker/issues"
},
"homepage": "https://github.com/Platoniq/decidim-module-time_tracker#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.20.5",
"@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.27.4",
"@decidim/eslint-config": "0.27.4",
"@decidim/stylelint-config": "0.27.4"
},
"dependencies": {
}
}