This repository has been archived by the owner on Aug 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
159 lines (159 loc) · 6.17 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "fundamental-vue",
"version": "0.18.4-rc.67",
"description": "SAP Fiori Fundamentals, implemented in Vue.js",
"author": "SAP SE",
"scripts": {
"storybook": "start-storybook --no-open --static-dir ./public -p 6006",
"build-storybook": "build-storybook --static-dir ./public --output-dir ./docs/dist/storybook",
"test:e2e": "start-server-and-test 'serve:demo' http://localhost:10000 'cross-env FD_E2E=true vue-cli-service test:e2e --url http://localhost:10000'",
"test:e2e:dev": "start-server-and-test 'serve:demo:dev' http://localhost:10000 'cross-env FD_E2E=true vue-cli-service test:e2e --mode development --url http://localhost:10000'",
"build": "rimraf -r dist && cross-env NODE_ENV=production yarn build:bili && cross-env NODE_ENV=production yarn build:src",
"build:src": "cp -r src dist/src",
"build:bili": "bili --bundle-node-modules --file-name FundamentalVue.[format].js --format cjs --format umd-min --format es --module-name FundamentalVue --env.NODE_ENV production -d dist",
"serve:demo": "cross-env FD_E2E=true vue-cli-service serve tests/e2e/app/index.js --port 10000 --mode production",
"serve:demo:dev": "cross-env FD_E2E=true vue-cli-service serve tests/e2e/app/index.js --port 10000 --mode development",
"serve": "rimraf node_modules/.cache && cross-env NODE_ENV=development BASE_URL='/' vue-cli-service serve src/docs/index.js",
"generate-api": "node src/tools",
"test": "jest --clearCache && cross-env BASE_URL='/' vue-cli-service test:unit --no-collect-coverage",
"test:coverage": "jest --clearCache && cross-env BASE_URL='/' vue-cli-service test:unit --collect-coverage",
"test:watch": "jest --clearCache && cross-env BASE_URL='/' vue-cli-service test:unit --watch",
"lint": "vue-cli-service lint --no-fix --max-warnings 0 --max-errors 0 src loaders tests",
"_build:docs": "cross-env NODE_ENV=production vue-cli-service build src/docs/index.js --mode production --dest docs/dist",
"build:docs": "cross-env BASE_URL=/ yarn _build:docs",
"build:docs:netlify": "cross-env BASE_URL=/ yarn build:docs && cross-env BASE_URL=/ yarn build-storybook",
"build:docs:ghpages": "cross-env BASE_URL=/fundamental-vue/ yarn _build:docs",
"deploy:docs": "yarn build:docs:ghpages && gh-pages -d docs/dist",
"release": "./scripts/publish-release.sh",
"release:create": "create-release",
"prepare": "husky install",
"std-version": "standard-version --infile ./CHANGELOG.md --releaseCommitMessageFormat \"chore(release): version {{currentTag}} build ${TRAVIS_BUILD_NUMBER} [ci skip]\" --header \"\""
},
"main": "dist/FundamentalVue.cjs.js",
"module": "dist/FundamentalVue.esm.js",
"unpkg": "dist/FundamentalVue.umd.js",
"jsdelivr": "dist/FundamentalVue.umd.js",
"files": [
"LICENSE.txt",
"README.md",
"CHANGELOG.md",
"dist",
"src"
],
"dependencies": {
"@ckienle/k-pop": "^0.7.0",
"@linusborg/vue-simple-portal": "^0.1.3",
"focus-trap": "^5.0.1",
"popper.js": "^1.16.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@commitlint/travis-cli": "^12.1.4",
"@storybook/addon-actions": "^6.0.26",
"@storybook/addon-essentials": "^6.0.26",
"@storybook/addon-links": "^6.0.26",
"@storybook/addons": "^6.0.26",
"@storybook/core": "^6.0.26",
"@storybook/vue": "^6.0.26",
"@toycode/markdown-it-class": "^1.2.1",
"@types/jest": "^26.0.15",
"@types/webpack": "^4.41.6",
"@types/webpack-env": "^1.15.1",
"@vue/cli-plugin-babel": "^4.2.2",
"@vue/cli-plugin-e2e-cypress": "^4.2.2",
"@vue/cli-plugin-eslint": "^4.2.2",
"@vue/cli-plugin-unit-jest": "^4.2.2",
"@vue/cli-service": "^4.2.2",
"@vue/component-compiler": "^4.2.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^1.0.0-beta.31",
"@vuese/markdown-render": "^2.5.3",
"@vuese/parser": "^2.4.3",
"ansicolor": "^1.1.92",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^26.1.0",
"babel-loader": "^8.0.6",
"babel-preset-vue": "^2.0.2",
"bili": "^4.8.1",
"codesandbox": "^2.1.10",
"core-js": "^3.4.3",
"cross-env": "^7.0.0",
"css-loader": "^3.4.2",
"devalue": "^2.0.1",
"escape-html": "^1.0.3",
"eslint": "^6.8.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^6.2.1",
"fundamental-styles": "0.7.0-rc.2",
"gh-pages": "^2.2.0",
"github-assistant": "^0.3.0",
"globby": "^11.0.0",
"gray-matter": "^4.0.2",
"html-loader": "^1.1.0",
"husky": "6.0.0",
"loader-utils": "^2.0.0",
"markdown-it-container": "^2.0.0",
"postcss": "^7.0.27",
"prettier": "^1.19.1",
"prismjs": "^1.19.0",
"raw-loader": "^4.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-is": "^16.13.1",
"regenerator-runtime": "^0.13.3",
"rimraf": "^3.0.2",
"rollup": "^2.21.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-vue": "^5.1.6",
"saber-markdown": "^0.1.6",
"sass-loader": "^9.0.2",
"standard-version": "9.3.0",
"start-server-and-test": "^1.10.6",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"validate-element-name": "^2.1.1",
"vue": "^2.6.11",
"vue-clipboard2": "^0.3.1",
"vue-loader": "^15.9.0",
"vue-router": "^3.1.5",
"vue-template-compiler": "^2.6.11",
"vue-virtual-scroller": "^1.0.0-rc.2",
"webpack": "^4.41.6",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-chain": "^6.4.0",
"webpack-cli": "^3.3.11",
"yarn": "^1.22.0"
},
"peerDependencies": {
"fundamental-styles": "0.7.0-rc.2",
"vue": "^2.6.11"
},
"bugs": {
"url": "https://github.com/SAP/fundamental-vue/issues"
},
"homepage": "https://sap.github.io/fundamental-vue",
"keywords": [
"vue",
"sap",
"fiori",
"typescript",
"javascript"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "[email protected]:SAP/fundamental-vue.git"
},
"sideEffects": [
"src/docs/**",
"./**/*.scss",
"./**/*.css",
"./**/*.sass"
]
}