This repository has been archived by the owner on Mar 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 2.01 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
{
"name": "app-extension-universal-fs",
"version": "1.0.0-alpha.1",
"description": "A Quasar CLI Extension for file managment",
"main": "src/index.js",
"repository": "https://github.com/quasarframework/quasar-app-extension-universal-fs",
"license": "MIT",
"author": "James Harrington <[email protected]>",
"homepage": "http://quasar-framework.org",
"bugs": {
"url": "https://github.com/quasarframework/quasar-app-extension-universal-fs/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --ext .js,.vue src",
"make-badges": "yarn node_modules/.bin/jest-badges-readme",
"test": "yarn jest",
"audit:snyk": "snyk test --org=info-fth --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",
"precommit": "yarn test && node node_modules/.bin/snyk test && node node_modules/.bin/jest-badges-readme && git add 'README.md' && node_modules/.bin/lint-staged"
},
"dependencies": {
"file-saver": "^2.0.1",
"fs-web": "^1.0.1",
"path": "^0.12.7"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"@olavoparno/jest-badges-readme": "^1.2.6",
"@quasar/babel-preset-app": "^1.0.1",
"babel-eslint": "10.0.1",
"babel-jest": "^24.3.1",
"eslint": "5.9.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-node": "8.0.0",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-standard": "4.0.0",
"eslint-plugin-vue": "4.7.1",
"fs-extra": "^7.0.1",
"husky": "^1.3.1",
"jest": "^24.3.1",
"lint-staged": "8.1.0",
"nlf": "^2.0.1",
"snyk": "^1.136.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn precommit"
}
},
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.6.0",
"yarn": ">= 1.6.0"
}
}