-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 989 Bytes
/
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": "gulp-px2rem-converter",
"version": "1.5.9",
"description": "Gulp plugin. Converts all properties in pixels to rem, also converts all media in pixels in em",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dasx10/gulp-px-to-rem.git"
},
"keywords": [
"gulpplugin",
"gulp",
"css",
"less",
"scss",
"converter",
"pixel",
"px",
"to",
"rem",
"em",
"rem2px",
"media2em",
"media"
],
"author": "Yevhenii Kleshchev <dasx10@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dasx10/gulp-px-to-rem/issues"
},
"homepage": "https://github.com/dasx10/gulp-px-to-rem#readme",
"devDependencies": {
"eslint": "^7.20.0",
"gulp": "^4.0.2",
"jest": "^26.6.3",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^4.1.5"
},
"dependencies": {
"gulp-util": "^3.0.8"
}
}