-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.37 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
{
"name": "stylis-px2rem-plugin",
"version": "0.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/oncarapp/stylis-px2rem-plugin.git"
},
"description": "A Stylis 4.x plugin that translates pixel units to rem units.",
"bugs": {
"url": "https://github.com/oncarapp/stylis-px2rem-plugin/issues"
},
"homepage": "https://github.com/oncarapp/stylis-px2rem-plugin#readme",
"scripts": {
"build": "tsc",
"lint": "eslint .",
"test": "jest ./tests --verbose"
},
"license": "MIT",
"keywords": [
"stylis",
"plugin",
"px",
"rem",
"pxtorem",
"px2rem",
"emotion",
"css",
"preprocessor",
"middleware"
],
"dependencies": {
"stylis": "^4.1.1"
},
"devDependencies": {
"@types/jest": "^28.1.3",
"@types/stylis": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"bdd-lazy-var": "^2.6.1",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"jest": "^28.1.2",
"jest-jasmine2": "^28.1.2",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"jest": {
"testRunner": "jest-jasmine2",
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
}
}
}