-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
39 lines (39 loc) · 1.51 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
{
"name": "yivi-frontend-packages",
"license": "MIT",
"browserslist": [
"> 0.25%, not dead"
],
"scripts": {
"lint-js": "eslint . --ext .js",
"lint-css": "stylelint yivi-css/src/",
"lint": "npm run lint-js && npm run lint-css",
"install": "set -eux; for pkg in `find . -maxdepth 2 -type d -name 'yivi-*'`; do (cd $pkg && npm install); done",
"link": "npm run link-yivi-popup && npm run link-yivi-frontend",
"link-yivi-popup": "cd ./plugins/yivi-popup && npm install ../yivi-web --no-save",
"link-yivi-frontend": "cd ./yivi-frontend && npm install ../yivi-core ../yivi-css ../plugins/yivi-client ../plugins/yivi-web ../plugins/yivi-popup --no-save",
"build": "set -eux; for pkg in ./yivi-css ./yivi-frontend; do (cd $pkg; npm run release); done"
},
"devDependencies": {
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-prettier-standard": "^4.0.1",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-compat": "^3.9.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"prettier": "2.2.1",
"prettier-config-standard": "^4.0.0",
"stylelint": "^13.12.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-prettier": "^1.2.0",
"stylelint-scss": "^3.19.0"
},
"repository": {
"type": "git",
"url": "https://github.com/privacybydesign/yivi-frontend-packages"
}
}