-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.73 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
65
66
67
68
69
70
71
72
73
{
"name": "civihr-taskassignments",
"description": "CiviHR \"Tasks and Assignments\" extension",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/compucorp/civihr-tasks-assignments.git"
},
"bugs": {
"url": "https://github.com/compucorp/civihr-tasks-assignments/issues"
},
"scripts": {
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"semistandard --fix",
"git add"
],
"*.scss": [
"stylelint --fix",
"git add"
]
},
"semistandard": {
"globals": [
"CRM",
"inject"
]
},
"stylelint": {
"extends": "stylelint-config-sass-guidelines",
"plugins": [
"stylelint-order",
"stylelint-scss"
],
"rules": {
"selector-class-pattern": null,
"max-nesting-depth": 3,
"no-extra-semicolons": true,
"no-duplicate-selectors": true
}
},
"devDependencies": {
"civicrm-cv": "^0.1.2",
"gulp": "^4.0.0",
"gulp-clean": "^0.4.0",
"gulp-concat": "^2.6.1",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"gulp-sass": "^4.0.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.1",
"husky": "^0.14.3",
"jasmine-core": "^2.9.1",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.1",
"karma-junit-reporter": "^1.2.0",
"karma-ng-html2js-preprocessor": "^1.0.0",
"karma-requirejs": "^1.1.0",
"karma-spec-reporter": "0.0.32",
"lint-staged": "^6.1.1",
"path": "^0.12.7",
"requirejs": "^2.3.5",
"semistandard": "^12.0.1",
"stylelint": "^8.4.0",
"stylelint-config-sass-guidelines": "^4.2.0",
"stylelint-order": "^0.8.1",
"stylelint-scss": "^2.5.0",
"yargs": "^11.1.0"
}
}