-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.35 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
{
"name": "message-button",
"version": "1.0.0",
"description": "",
"main": "index.html",
"scripts": {
"watch": "node-sass sass/ -o ./ --source-map true --output-style expanded --indent-type tab --indent-width 1 -w",
"compile:css": "node-sass sass/ -o ./ && stylelint '*.css' --fix || true && stylelint '*.css' --fix",
"compile:rtl": "rtlcss style.css style-rtl.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wp-sms/message-button.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/wp-sms/message-button/issues"
},
"homepage": "index.html",
"devDependencies": {
"autoprefixer": "^10.4.17",
"cssnano": "^6.0.3",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-postcss": "^10.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2"
},
"rtlcssConfig": {
"options": {
"autoRename": false,
"autoRenameStrict": false,
"blacklist": {},
"clean": true,
"greedy": false,
"processUrls": false,
"stringMap": []
},
"plugins": [],
"map": false
},
"dependencies": {
"browser-sync": "^3.0.2",
"dir-archiver": "^2.1.0",
"gulp-concat": "^2.6.1",
"gulp-imagemin": "^7.1.0",
"node-sass": "^9.0.0",
"rtlcss": "^4.1.1"
}
}