forked from neighborhood999/vue-signature-pad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.96 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
{
"name": "vue-signature-pad",
"description": "SignaturePad component for Vue.js",
"version": "1.1.17",
"main": "dist/vue-signature-pad.common.js",
"unpkg": "dist/vue-signature-pad.js",
"module": "dist/vue-signature-pad.esm.js",
"browser": "dist/vue-signature-pad.common.js",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build:dev": "npm run clean && cross-env NODE_ENV=development rollup -c",
"build:prod": "npm run clean && cross-env NODE_ENV=production rollup -c",
"lint": "eslint --ext .vue,.js src",
"lint-fix": "eslint --ext .vue,.js src --fix",
"size": "run-s size:*",
"size:cjs": "echo CommonJs gzipped size: $(gzip-size $npm_package_main)",
"size:unpkg": "echo UMD gzipped size: $(gzip-size $npm_package_unpkg)",
"size:esm": "echo ESModule gzipped size: $(gzip-size $npm_package_module)",
"clean": "rimraf dist",
"prepare": "npm run build:prod",
"prepublishOnly": "npm test && npm run lint"
},
"jest": {
"moduleFileExtensions": [
"js",
"vue"
],
"testMatch": [
"<rootDir>/src/*/__tests__/*.spec.js"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"verbose": true,
"collectCoverage": true
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix",
"git add"
]
},
"author": "Peng Jie <bivinity.pengzjie@gmail.com> (https://github.com/neighborhood999)",
"repository": {
"type": "git",
"url": "git+https://github.com/neighborhood999/vue-signature-pad.git"
},
"keywords": [
"vue",
"signature",
"component"
],
"bugs": {
"url": "https://github.com/neighborhood999/vue-signature-pad/issues"
},
"dependencies": {
"merge-images": "^1.1.0",
"signature_pad": "^3.0.0-beta.3",
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/core": "7.7.2",
"@babel/plugin-proposal-object-rest-spread": "7.6.2",
"@babel/plugin-transform-runtime": "7.6.2",
"@babel/preset-env": "7.7.1",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.3",
"babel-jest": "24.9.0",
"canvas": "1.6.13",
"cross-env": "6.0.3",
"eslint": "6.6.0",
"eslint-config-prettier": "6.5.0",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-vue": "6.0.0",
"gzip-size-cli": "3.0.0",
"husky": "3.1.0",
"jest": "24.9.0",
"jest-serializer-vue": "2.0.2",
"lint-staged": "9.4.2",
"npm-run-all": "4.1.5",
"prettier": "1.18.2",
"rimraf": "3.0.0",
"rollup": "1.26.3",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-babel-minify": "9.1.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-size-snapshot": "0.10.0",
"vue-template-compiler": "2.6.10"
},
"engines": {
"node": ">=8"
},
"license": "MIT"
}