-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "vue-tight",
"version": "1.0.2",
"description": "Vue directive that eliminates whitespace between elements",
"author": "Ian Purvis (https://purvisresearch.com)",
"license": "MIT",
"files": [
"dist"
],
"main": "dist/vue-tight.cjs.js",
"module": "dist/vue-tight.esm.js",
"peerDependencies": {
"vue": "^2.0.0"
},
"scripts": {
"build": "bin/build",
"test": "bin/jest",
"debug": "bin/debug"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/eslint-parser": "^7.18.2",
"@babel/preset-env": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"babel-jest": "^28.1.2",
"codecov": "^3.8.2",
"eslint": "^8.19.0",
"eslint-plugin-jest": "^26.5.3",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"lint-staged": "^13.0.3",
"rollup": "^2.76.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ianpurvis/vue-tight.git"
},
"keywords": [
"vue",
"directive",
"frontend",
"javascript"
]
}