-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.71 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
{
"name": "vacl",
"version": "0.1.4",
"description": "A Lightweight Typescript ACL directives library for Vue 3",
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage --outputFile=coverage-summary",
"badges": "node_modules/.bin/jest-badges-readme --coverageDir=tests/coverage",
"lint": "eslint . --fix --ext .ts",
"build": "rollup -c",
"watch": "rollup -cw"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fullstackfool/vacl.git"
},
"keywords": [
"vue",
"acl",
"typescript",
"permissions",
"roles"
],
"author": "Karl Davies <k.a.davies@hotmail.co.uk>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fullstackfool/vacl/issues"
},
"homepage": "https://github.com/fullstackfool/vacl#readme",
"dependencies": {},
"devDependencies": {
"@olavoparno/jest-badges-readme": "^1.5.1",
"@types/jest": "^26.0.19",
"@types/vue": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"@vue/runtime-core": "^3.0.5",
"@vue/test-utils": "^2.0.0-beta.14",
"eslint": "^7.16.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"rollup": "^2.35.1",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}