forked from ajobi/vue-snip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.18 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
{
"name": "vue-snip",
"version": "2.0.2",
"author": "Andrej Bilec <[email protected]>",
"license": "MIT",
"scripts": {
"prepare": "yarn build",
"lint": "eslint './**/*.{js,ts}'",
"lint:fix": "eslint './**/*.{js,ts}' --fix",
"build": "rollup -c",
"dev": "NODE_ENV=development rollup -c",
"es-check": "es-check es5 dist/*.js",
"test:open": "yarn instrument && yarn build && cypress open",
"test:run": "yarn instrument && yarn build && cypress run --browser chrome",
"test": "yarn test:run && yarn coverage && yarn es-check",
"instrument": "nyc instrument src instrumented",
"coverage": "npx nyc report --reporter=text --reporter=text-summary"
},
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist/"
],
"dependencies": {
"js-snip": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@cypress/code-coverage": "^3.8.1",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"cypress": "^12.5.1",
"es-check": "^6.1.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-standard": "^5.0.0",
"prettier": "^2.5.1",
"rollup": "^2.60.1",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.5.2",
"vue": "^3.2.23"
},
"homepage": "https://github.com/ajobi/vue-snip",
"repository": {
"type": "git",
"url": "git+https://github.com/ajobi/vue-snip.git"
},
"keywords": [
"clamp",
"ellipsis",
"snip",
"snip-text",
"cut-text",
"clamp-text",
"truncate-text",
"multiline-text",
"vue",
"vue2",
"vue3",
"vuejs",
"vue-directive",
"vue-plugin"
]
}