-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.13 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
{
"name": "@script-development/vue-fast-table",
"version": "2.0.3",
"description": "Fast table for vue",
"author": "Script",
"scripts": {
"build": "rollup -c scripts/config.js",
"lint": "eslint ./src --ext .vue",
"dev": "vue-cli-service serve --open dev/main.js",
"docs": "typedoc src/index.ts",
"pub:patch": "npm version patch && npm publish",
"pub": "npm publish",
"watch": "rollup -c scripts/config.js --watch",
"test": "mocha test/index.js",
"test:watch": "mocha --watch test/index.js",
"test:mutate": "stryker run"
},
"main": "dist/index.ssr.js",
"module": "dist/index.esm.js",
"files": [
"dist",
"types",
"src"
],
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-typescript": "^8.2.0",
"@stryker-mutator/core": "^4.5.1",
"@stryker-mutator/mocha-runner": "^4.5.1",
"@stryker-mutator/typescript-checker": "^4.5.1",
"@typescript-eslint/parser": "^4.19.0",
"@vue/cli": "^4.5.12",
"@vue/cli-plugin-typescript": "^4.5.12",
"@vue/cli-plugin-unit-mocha": "^4.5.12",
"@vue/cli-service": "~4.5.0",
"@vue/test-utils": "^1.1.0",
"bootstrap-vue": "^2.21.2",
"canvas": "^2.7.0",
"eslint": "^7.22.0",
"eslint-plugin-mocha": "^8.1.0",
"eslint-plugin-vue": "^7.8.0",
"glob": "^7.1.6",
"husky": "^5.2.0",
"jsdom": "^16.5.1",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"postcss": "^8.2.8",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rollup": "^2.42.3",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-vue": "^5.1.9",
"sinon": "^10.0.0",
"typedoc": "^0.20.33",
"typescript": "^4.2.3",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.46.0",
"webpack-cli": "^4.5.0"
},
"license": "MIT",
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"typings": "dist/index.d.ts"
}