This repository has been archived by the owner on Aug 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 2.96 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
{
"name": "@usj/vue-components",
"version": "1.0.0-alpha.35",
"description": "VueJS components used internally by USJ",
"author": "USJ Development Team <[email protected]>",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --target lib --name vue-components src/components/index.js",
"test:unit": "vue-cli-service test:unit",
"build-storybook": "build-storybook",
"prebuild": "rimraf ./dist",
"prepublishOnly": "npm run build",
"release:prerelease": "npm version prerelease -m 'Bump version' && npm publish",
"storybook": "start-storybook -p 6006 -c .storybook",
"storybook:build": "vue-cli-service storybook:build -c config/storybook",
"storybook:serve": "vue-cli-service storybook:serve -p 6006 -c config/storybook"
},
"dependencies": {
"autosize": "^4.0.0",
"element.scrollintoviewifneeded-polyfill": "^1.0.1"
},
"devDependencies": {
"@storybook/addon-actions": "^4.1.0",
"@storybook/addon-links": "^4.1.0",
"@vue/cli-plugin-babel": "^3.3.0",
"@vue/cli-plugin-eslint": "^3.3.0",
"@vue/cli-plugin-unit-jest": "^3.3.0",
"@vue/cli-service": "^3.3.0",
"@vue/test-utils": "^1.0.0-beta.15",
"ag-grid-vue": "16.0.0",
"babel-loader": "^8.0.4",
"flatpickr": "^4.5.2",
"jest-cli": "^23.6.0",
"jest-serializer-vue": "^2.0.2",
"node-sass": "^4.11.0",
"postcss-color-function": "4.0.1",
"postcss-cssnext": "3.1.0",
"postcss-import": "11.1.0",
"postcss-media-minmax": "3.0.0",
"rimraf": "2.6.2",
"rucksack-css": "1.0.2",
"sass-loader": "^7.1.0",
"stylus": "^0.54.5",
"stylus-loader": "3.0.1",
"vue": "2.5.13",
"vue-cli-plugin-storybook": "^0.5.0",
"vue-jest": "^3.0.2",
"vue-template-compiler": "2.5.13"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
],
"transform": {
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest",
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
}
},
"bugs": {
"url": "https://github.com/USJ/vue-components/issues"
},
"contributors": [
{
"name": "Marco Leong",
"email": "[email protected]",
"url": "https://www.marcoleong.com"
},
{
"name": "Rivka Fong",
"email": "[email protected]"
}
],
"homepage": "https://github.com/USJ/vue-components#readme",
"keywords": [
"USJ"
],
"license": "MIT",
"main": "./dist/vue-components.umd.min.js",
"module": "./dist/vue-components.common.js",
"optionalDependencies": {},
"repository": "git+https://github.com/USJ/vue-components.git"
}