-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.72 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
{
"name": "@valtech-commerce/pwastudio-config",
"version": "1.1.0",
"description": "Valtech_Commerce PWA Studio configurations",
"definition": "",
"homepage": "https://github.com/valtech-commerce/pwastudio-config",
"author": {
"name": "Valtech Canada inc.",
"url": "https://www.valtech.ca/"
},
"keywords": [
"eslintconfig",
"eslint-config",
"magento",
"prettierconfig",
"prettier-config",
"pwastudio",
"stylelintconfig",
"stylelint-config"
],
"license": "MIT",
"repository": {
"url": "git://github.com/valtech-commerce/pwastudio-config.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/valtech-commerce/pwastudio-config/issues"
},
"engines": {
"node": ">= 14"
},
"main": "./src/config/eslint.js",
"exports": {
"./eslint": "./src/config/eslint.js",
"./prettier": "./src/config/prettier.js",
"./stylelint": "./src/config/stylelint.js"
},
"scripts": {
"test": "npm run lint",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:prettier": "prettier --check .",
"lint:eslint": "eslint --report-unused-disable-directives .",
"fix": "npm run fix:prettier && npm run fix:eslint",
"fix:prettier": "prettier --write .",
"fix:eslint": "eslint --fix --ext .js .",
"script:fixtures": "node ./scripts/generate-fixtures.js"
},
"devDependencies": {
"sort-json": "^2.0.1"
},
"dependencies": {
"@valtech-commerce/eslint-config": "^4.0.0-rc.3",
"@valtech-commerce/fs": "^1.7.0",
"@valtech-commerce/prettier-config": "^1.1.0",
"@valtech-commerce/stylelint-config": "^3.2.0"
},
"peerDependencies": {
"eslint-plugin-package-json": "^0.1.4",
"stylelint-config-css-modules": "^4.1.0",
"eslint-plugin-ordered-imports": "^0.6.0",
"eslint-plugin-prettier": "^3.4.0"
}
}