-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
110 lines (110 loc) · 4.16 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
{
"name": "qinputex",
"version": "0.4.3",
"description": "An Advance QInput for Quasar",
"productName": "QInputEx",
"author": "Riceball LEE <snowyu.lee@gmail.com>",
"main": "dist/umd/qinputex.js",
"module": "dist/esm/components/qinputex/index.js",
"es2015": "dist/es2015/components/qinputex/index.js",
"unpkg": "dist/umd/qinputex.min.js",
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm run build:es2015 && npm run build:esm && npm run build:cjs && npm run build:umd && npm run build:umd:min",
"build:es2015": "tsc --module es2015 --target es2015 --outDir dist/es2015 && babel dist/es2015 -d dist/es2015",
"build:esm": "tsc --module es2015 --target es5 --outDir dist/esm && babel dist/esm -d dist/esm",
"build:cjs": "tsc --module commonjs --target es5 --outDir dist/cjs && babel dist/cjs -d dist/cjs",
"build:umd": "rollup -c",
"build:umd:min": "cd dist/umd && uglifyjs --compress --source-map --mangle --screw-ie8 --comments -o qinputex.min.js -- qinputex.js && gzip qinputex.min.js -c > qinputex.min.js.gz",
"lint": "eslint --ext .js,.vue src",
"test": "echo \"See package.json => scripts for available tests.\" && exit 0",
"test:unit": "jest --updateSnapshot",
"test:unit:coverage": "jest --coverage",
"test:unit:watch": "jest --watch",
"test:unit:watchAll": "jest --watchAll",
"serve:test:coverage": "quasar serve test/jest/coverage/lcov-report/ --port 8788",
"concurrently:dev:jest": "concurrently -p \"[{name}]\" -n \"QUASAR,_JEST_\" -c \"quasar dev\" \"jest --watch\"",
"test:e2e": "cypress open",
"test:e2e:CI": "cypress run",
"serve:test:lighthouse": "quasar serve test/lighthouse/reports/ --port 8789",
"audit:snyk": "snyk test --json > ./test/audits/snyk.json",
"audit:node_modules": "yarn audit --json > ./test/audits/node_modules_audit.json",
"audit:licenses": "nlf --summary detail > ./test/audits/licenses.txt",
"audit:lighthouse": "lighthouse http://localhost:3000 view --output-path=./test/lighthouse/reports/index.html --config-path=./test/lighthouse/configs/full-config.js",
"release": "standard-version && git push --follow-tags origin master"
},
"dependencies": {
"@vue/babel-helper-vue-jsx-merge-props": "^1.0.0",
"flag-icon-css": "^3.4.5",
"lodash.merge": "^4.6.2"
},
"peerDependencies": {
"quasar": ">=1",
"vue": ">=2",
"vue-i18n": ">=8.9.0"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/preset-typescript": "^7.3.3",
"@quasar/app": "^1.6.1",
"@quasar/extras": "^1.6.1",
"@quasar/quasar-app-extension-testing": "^1.0.0",
"@quasar/quasar-app-extension-testing-e2e-cypress": "^1.0.0-beta.10",
"@quasar/quasar-app-extension-testing-quality": "^1.0.0-beta.8",
"@quasar/quasar-app-extension-testing-security": "^1.0.0-alpha.8",
"@types/lodash.merge": "^4.6.6",
"@types/node": "11.9.5",
"@vue/babel-plugin-transform-vue-jsx": "^1.0.0",
"@vue/babel-preset-jsx": "^1.1.2",
"@vue/eslint-config-prettier": "^4.0.0",
"babel-eslint": "^10.0.1",
"date-fns": "^2.8.1",
"eslint": "^5.10.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-vue": "^5.0.0",
"fork-ts-checker-webpack-plugin": "^1.0.3",
"pug": "^2.0.3",
"pug-plain-loader": "^1.0.0",
"quasar": "^1.9.13",
"rollup": "^1.7.0",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-ignore": "^1.0.5",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-typescript2": "^0.20.1",
"standard-version": "^7.0.1",
"strip-ansi": "=3.0.1",
"ts-jest": "^24.0.0",
"ts-loader": "^5.3.3",
"tslint": "^5.20.1",
"typescript": "^3.4.4",
"uglify-js": "^3.5.0",
"vue-class-component": "^7.0.1",
"vue-i18n": "^8.9.0",
"vue-property-decorator": "^8.0.0",
"vue-tsx-support": "^2.3.3"
},
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.6.0",
"yarn": ">= 1.6.0"
},
"keywords": [
"vue",
"quasar",
"component",
"qinput"
],
"browserslist": [
"last 1 version, not dead, ie >= 11"
],
"resolutions": {
"ajv": "6.8.1"
},
"license": "MIT",
"files": [
"src",
"dist"
]
}