forked from pymedusa/Medusa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.4 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "Medusa",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/PyMedusa/Medusa.git"
},
"bugs": {
"url": "https://github.com/PyMedusa/Medusa/issues"
},
"homepage": "https://github.com/PyMedusa/Medusa#readme",
"scripts": {
"test": "yarn run test-css && yarn test-api",
"gulp": "gulp",
"build": "gulp lintthemes",
"coverage": "nyc ava && yarn report-coverage",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"test-css": "node node_modules/stylelint/bin/stylelint.js ./themes-default/**/static/css/*.css",
"test-api": "node_modules/.bin/dredd --config dredd/dredd.yml",
"security": "snyk test",
"install": "yarn run build"
},
"devDependencies": {
"ava": "^0.24.0",
"codecov": "^3.0.0",
"dredd": "^4.7.2",
"eslint": "^4.16.0",
"eslint-config-xo": "^0.19.0",
"execa": "^0.9.0",
"grunt": "^0.4.5",
"grunt-bower-concat": "^1.0.0",
"grunt-bower-task": "^0.4.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-copy": "^0.8.2",
"grunt-contrib-cssmin": "^0.14.0",
"grunt-contrib-uglify": "^0.11.1",
"gulp": "^3.9.1",
"gulp-changed-in-place": "^2.3.0",
"gulp-folders": "^1.1.0",
"gulp-print": "^4.0.0",
"gulp-run": "^1.7.1",
"gulp-xo": "^0.16.1",
"load-grunt-tasks": "^3.3.0",
"nyc": "^11.3.0",
"snyk": "^1.9.1",
"stylelint-config-standard": "^16.0.0",
"xo": "^0.18.2"
},
"xo": {
"space": 4,
"rules": {
"space-before-function-paren": [
"error",
"never"
]
},
"envs": [
"browser",
"jquery"
],
"globals": [
"PNotify",
"LazyLoad",
"_",
"log",
"MEDUSA",
"api",
"apiKey",
"apiRoot",
"s"
],
"ignores": [
"static/js/lib/**",
"static/js/*.min.js",
"static/js/vender.js",
"static/js/api.js"
]
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"indentation": [
4,
{
"ignore": [
"inside-parens"
],
"message": "Please use 4 spaces for indentation. Tabs make OmgImAlexis sad.",
"severity": "error"
}
]
},
"ignoreFiles": [
"static/css/lib/**",
"static/css/*.min.css"
]
},
"dependencies": {
"stylelint": "^7.9.0"
}
}