Integration tests are executed using vue-cli-service with double quotes as following: `vue-cli-service test:unit "tests/integration/**/*.spec.ts"`. Using single quotes (mochajs/mocha#1828) works on macOS and Ubuntu but does not on Windows (tests are not found). Double quotes is the only portable way that works on all three platforms (mochajs/mocha#3136).
77 lines
2.8 KiB
JSON
77 lines
2.8 KiB
JSON
{
|
|
"name": "privacy.sexy",
|
|
"version": "0.10.2",
|
|
"private": true,
|
|
"description": "Enforce privacy & security best-practices on Windows and macOS, because privacy is sexy 🍑🍆",
|
|
"author": "undergroundwires",
|
|
"scripts": {
|
|
"serve": "vue-cli-service serve",
|
|
"build": "vue-cli-service build",
|
|
"test:unit": "vue-cli-service test:unit",
|
|
"test:integration": "vue-cli-service test:unit \"tests/integration/**/*.spec.ts\"",
|
|
"lint": "npm run lint:vue && npm run lint:yaml && npm run lint:md && npm run lint:md:relative-urls && npm run lint:md:consistency",
|
|
"electron:build": "vue-cli-service electron:build",
|
|
"electron:serve": "vue-cli-service electron:serve",
|
|
"lint:md": "markdownlint **/*.md --ignore node_modules",
|
|
"lint:md:consistency": "remark . --frail --use remark-preset-lint-consistent",
|
|
"lint:md:relative-urls": "remark . --frail --use remark-validate-links",
|
|
"lint:vue": "vue-cli-service lint --no-fix",
|
|
"lint:yaml": "yamllint **/*.yaml --ignore=node_modules/**/*.yaml",
|
|
"postinstall": "electron-builder install-app-deps",
|
|
"postuninstall": "electron-builder install-app-deps"
|
|
},
|
|
"main": "background.js",
|
|
"dependencies": {
|
|
"@fortawesome/fontawesome-svg-core": "^1.2.34",
|
|
"@fortawesome/free-brands-svg-icons": "^5.15.2",
|
|
"@fortawesome/free-regular-svg-icons": "^5.15.2",
|
|
"@fortawesome/free-solid-svg-icons": "^5.15.2",
|
|
"@fortawesome/vue-fontawesome": "^2.0.2",
|
|
"@juggle/resize-observer": "^3.3.0",
|
|
"ace-builds": "^1.4.12",
|
|
"core-js": "^3.9.1",
|
|
"file-saver": "^2.0.5",
|
|
"inversify": "^5.0.5",
|
|
"liquor-tree": "^0.2.70",
|
|
"v-tooltip": "2.1.2",
|
|
"vue": "^2.6.12",
|
|
"vue-class-component": "^7.2.6",
|
|
"vue-js-modal": "^2.0.0-rc.6",
|
|
"vue-property-decorator": "^9.1.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/ace": "0.0.45",
|
|
"@types/chai": "^4.2.15",
|
|
"@types/file-saver": "^2.0.1",
|
|
"@types/mocha": "^8.2.1",
|
|
"@vue/cli-plugin-babel": "^4.5.11",
|
|
"@vue/cli-plugin-typescript": "^4.5.11",
|
|
"@vue/cli-plugin-unit-mocha": "^4.5.11",
|
|
"@vue/cli-service": "^4.5.11",
|
|
"@vue/test-utils": "1.1.3",
|
|
"chai": "^4.3.3",
|
|
"electron": "^12.0.1",
|
|
"electron-devtools-installer": "^3.1.1",
|
|
"electron-log": "^4.3.2",
|
|
"electron-updater": "^4.3.8",
|
|
"js-yaml-loader": "^1.2.2",
|
|
"markdownlint-cli": "^0.27.1",
|
|
"remark-cli": "^9.0.0",
|
|
"remark-lint-no-dead-urls": "^1.1.0",
|
|
"remark-preset-lint-consistent": "^4.0.0",
|
|
"remark-validate-links": "^10.0.3",
|
|
"sass": "^1.32.8",
|
|
"sass-loader": "^10.1.1",
|
|
"tslib": "^2.1.0",
|
|
"typescript": "^4.2.3",
|
|
"vue-cli-plugin-electron-builder": "^2.0.0-rc.6",
|
|
"vue-template-compiler": "^2.6.12",
|
|
"yaml-lint": "^1.2.4"
|
|
},
|
|
"homepage": "https://privacy.sexy",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/undergroundwires/privacy.sexy.git"
|
|
}
|
|
}
|