This repository was archived by the owner on Aug 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.34 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.34 KB
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
{
"name": "@godaddy/webpack-rtlcss-plugin",
"version": "1.0.0",
"description": "Webpack Plugin to operate Right-to-Left operations over .css",
"main": "index.js",
"scripts": {
"report": "nyc report --reporter=lcov",
"test": "webpack --config test/unit/webpack.config.js && nyc --reporter=text --reporter=json-summary mocha ./test/unit/index.test.js && npm run lint",
"lint": "npm run lint:code",
"lint:code": "eslint-godaddy index.js"
},
"keywords": [
"css",
"rtl",
"webpack"
],
"repository": {
"type": "git",
"url": "git@github.com:godaddy/webpack-rtlcss-plugin.git"
},
"homepage": "https://github.com/godaddy/webpack-rtlcss-plugin",
"bugs": "https://github.com/godaddy/webpack-rtlcss-plugin/issues",
"author": "GoDaddy Operating Company, LLC",
"license": "MIT",
"maintainers": [
"Chris Abrams <cabrams@godaddy.com>"
],
"dependencies": {
"rtlcss": "^2.4.1",
"webpack-sources": "^1.4.3"
},
"engines": {
"node": ">= 10.x.x"
},
"devDependencies": {
"assume": "^2.2.0",
"css-loader": "^3.4.2",
"eslint": "^6.6.0",
"eslint-config-godaddy": "^4.0.0",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-mocha": "^5.3.0",
"mini-css-extract-plugin": "^0.9.0",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
}
}