-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
72 lines (72 loc) · 3.06 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
{
"name": "@voxgig/model-vue",
"version": "0.16.0",
"main": "./dist/Vxg.umd.js",
"scripts": {
"serve": "vue-cli-service serve",
"vue-build": "vue-cli-service build --target lib --name Vxg --mode production ./src/vxg.js",
"vue-watch": "vue-cli-service build --target lib --name Vxg ./src/vxg.js --watch --report",
"lint": "vue-cli-service lint",
"test-off": "npm run test-lab-lint && npm run test-mocha",
"test": "npm run test-lab-lint",
"test-mocha": "mocha-webpack --interactive false --webpack-config test/test.webpack.config.js --require test/setup.js test/**/*.spec.js",
"test-lab": "lab -v -P test -t 0 -r console -o stdout -r html -o test/coverage.html",
"test-lab-lint": "lab -v -P test -t 0 -L -r console -o stdout -r html -o test/coverage.html",
"coveralls": "lab -s -P test -r lcov | coveralls",
"coverage": "lab -v -P test -r html > coverage.html",
"prettier": "prettier --write --no-semi --single-quote *.js src/**/*.js test/*.js",
"clean": "rm -rf node_modules yarn.lock package-lock.json",
"reset": "npm run clean && npm i && npm test",
"repo-check": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && [[ '' == `git tag --list v${REPO_VERSION}` ]]",
"repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag v$REPO_VERSION && git push --tags;",
"repo-publish": "npm run repo-check && npm run clean && npm i --registry https://registry.npmjs.org && npm run prettier && npm run vue-build && npm test && npm run repo-tag && npm publish --registry https://registry.npmjs.org",
"repo-publish-quick": "npm run repo-check && npm run prettier && npm run vue-build && npm run repo-tag && npm publish --registry https://registry.npmjs.org --access=public"
},
"files": [
"dist/*",
"src/*",
"public/*",
"*.json",
"*.js"
],
"devDependencies": {
"@hapi/code": "8.0.3",
"@hapi/eslint-plugin": "6.0.0",
"@hapi/joi": "17.1.1",
"@hapi/lab": "24.3.2",
"@jsonic/jsonic-next": "2.4.3",
"@vue/cli-plugin-babel": "4.5.13",
"@vue/cli-plugin-eslint": "4.5.13",
"@vue/cli-plugin-vuex": "4.5.13",
"@vue/cli-service": "4.5.13",
"@vue/eslint-config-prettier": "6.0.0",
"@vue/test-utils": "1.2.2",
"babel-eslint": "10.1.0",
"core-js": "3",
"deepmerge": "4.2.2",
"eslint": "6",
"eslint-plugin-prettier": "3",
"eslint-plugin-vue": "7.18.0",
"expect": "27.2.4",
"fibers": "5.0.0",
"gubu": "4.0.0",
"jsdom": "17.0.0",
"jsdom-global": "3.0.2",
"mocha": "4",
"mocha-webpack": "2.0.0-beta.0",
"nua": "2.0.1",
"patrun": "7.2.5",
"prettier": "2.7.1",
"sass": "1.34.0",
"sass-loader": "10",
"vue": "2.6.12",
"vue-cli-plugin-vuetify": "2.4.0",
"vue-router": "3.5.2",
"vue-template-compiler": "2.6.12",
"vuetify": "2.5.1",
"vuetify-loader": "1.7.2",
"vuex": "3.4.0",
"webpack-node-externals": "3.0.0",
"@seneca/search-mini": "0.1.2"
}
}