-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.52 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": "vue-remove-whitespace",
"description": "A set of reusable remove whitespace directives for reusable Vue.js components",
"version": "2.1.1",
"author": "Ken Aoki <[email protected]>",
"bugs": {
"url": "https://github.com/aokiken/vue-remove-whitespace/issues"
},
"devDependencies": {
"@vue/test-utils": "^1.2.1",
"babel-jest": "^27.0.5",
"babel-preset-env": "^1.7.0",
"eslint": "^7.29.0",
"jest": "^27.0.5",
"ts-loader": "^9.2.3",
"typescript": "^4.3.4",
"vue": "^2.6.14",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.40.0",
"webpack-cli": "^4.7.2"
},
"files": [
"umd",
"esm",
"lib"
],
"homepage": "https://github.com/aokiken/vue-remove-whitespace",
"keywords": [
"remove-whitespace",
"reusable",
"vue",
"vue-directive",
"vuejs"
],
"license": "MIT",
"main": "lib/index.js",
"module": "esm/index.js",
"types": "lib/index.d.ts",
"peerDependencies": {
"vue": "^2.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/aokiken/vue-remove-whitespace"
},
"scripts": {
"build": "yarn run build:cjs && yarn run build:esm && yarn run build:umd",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:umd": "webpack",
"test": "jest"
},
"jest": {
"testEnvironment": "jsdom",
"collectCoverage": true,
"collectCoverageFrom": [
"!**/node_modules/**",
"./lib/index.js"
],
"testMatch": ["<rootDir>/**/*.test.js"]
}
}