forked from co-cart/co-cart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
131 lines (131 loc) · 3.23 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"title": "CoCart Lite",
"name": "cart-rest-api-for-woocommerce",
"version": "3.1.0-rc.5",
"private": false,
"contributors": [
"sebd86",
"cocartforwc",
"ajayghaghretiya",
"skunkbad",
"sefid-par",
"mattdabell",
"joshuaiz",
"dmchale",
"JPPdesigns",
"inspiredagency",
"darkchris",
"mohib007",
"rozaliastoilova",
"ashtarcommunications"
],
"author": "Sébastien Dumont",
"author_uri": "https://sebastiendumont.com",
"homepage": "https://cocart.xyz/",
"main": "Gruntfile.js",
"repository": {
"type": "git",
"url": "https://github.com/co-cart/co-cart.git"
},
"bugs": {
"url": "https://github.com/co-cart/co-cart/issues"
},
"requires": "5.6",
"requires_php": "7.3",
"tested_up_to": "5.9",
"wc_requires": "4.3",
"wc_tested_up_to": "6.2",
"license": "GPL-3.0",
"copyright": "Copyright (c) 2022, Sébastien Dumont",
"description": "A <strong>RESTful API</strong> made for <strong>WooCommerce</strong>, focusing on <strong>the front-end</strong> of the store helping you to manage shopping carts and allows developers to build a <strong>headless store</strong>.",
"tags": "",
"keywords": [
"wordpress",
"wordpress-development",
"feature-plugin",
"plugin",
"woocommerce",
"woocommerce-api",
"woocommerce-extension",
"woocommerce-plugin",
"e-commerce",
"api",
"cart",
"products",
"rest",
"rest-api",
"JSON",
"wp-cli",
"decoupled",
"headless",
"headless-wordpress",
"headless-woocommerce"
],
"scripts": {
"test": "grunt",
"watch": "grunt watch",
"build": "grunt build",
"ready": "grunt ready",
"makepot": "composer run-script makepot",
"update:version": "grunt version",
"update:pot": "grunt update-pot",
"update:stable": "grunt stable",
"zip:release": "grunt zip",
"packages:update": "npm install -g npm-check-updates & ncu -u & npm update & npm install"
},
"devDependencies": {
"@lodder/grunt-postcss": "^3.1.1",
"github-contributors-list": "https://github.com/woocommerce/github-contributors-list/tarball/master",
"grunt": "1.4.1",
"grunt-checktextdomain": "1.0.1",
"grunt-contrib-clean": "2.0.0",
"grunt-contrib-compress": "2.0.0",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-cssmin": "4.0.0",
"grunt-contrib-jshint": "3.1.1",
"grunt-contrib-sass": "2.0.0",
"grunt-contrib-uglify": "5.0.1",
"grunt-contrib-watch": "1.1.0",
"grunt-dev-update": "2.3.0",
"grunt-newer": "1.3.0",
"grunt-potomo": "3.5.0",
"grunt-rtlcss": "2.0.2",
"grunt-sass": "3.1.0",
"grunt-stylelint": "0.16.0",
"grunt-text-replace": "0.4.0",
"grunt-wp-i18n": "1.0.3",
"jshint-stylish": "2.2.1",
"load-grunt-tasks": "5.1.0",
"node-sass": "6.0.1",
"postcss": "^8.4.5",
"prettier-stylelint": "0.4.2",
"stylelint-config-prettier": "8.0.2",
"stylelint-config-wordpress": "17.0.0",
"stylelint-order": "4.1.0"
},
"dependencies": {
"autoprefixer": "^9.8.6",
"stylelint": "~13.13.1"
},
"engines": {
"node": ">=10.15.0",
"npm": ">=6.4.1"
},
"stylelint": {
"extends": [
"stylelint-config-wordpress/scss",
"stylelint-config-prettier"
],
"plugins": [
"stylelint-order"
],
"rules": {
"at-rule-empty-line-before": null,
"no-descending-specificity": null,
"order/properties-alphabetical-order": true
}
},
"browserslist": [
"defaults"
]
}