-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
55 lines (55 loc) · 1.57 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
{
"name": "vue-nl2br",
"version": "1.1.1",
"description": "A vue component that turns new lines into line breaks.",
"keywords": [
"vue",
"nl2br"
],
"author": "INOUE Takuya",
"homepage": "https://github.com/inouetakuya/vue-nl2br#readme",
"bugs": {
"url": "https://github.com/inouetakuya/vue-nl2br/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/inouetakuya/vue-nl2br.git"
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint --ext .js,.ts --ignore-path .gitignore .",
"lint:fix": "ESLINT_USE_FLAT_CONFIG=false eslint --ext .js,.ts --ignore-path .gitignore . --fix",
"test": "jest",
"build": "rm -rf dist/ && tsc",
"version": "conventional-changelog --preset angular --infile CHANGELOG.md --same-file && git add CHANGELOG.md"
},
"peerDependencies": {
"vue": "^2.0.0"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "8.19.0",
"@typescript-eslint/parser": "8.19.0",
"@vue/test-utils": "1.3.6",
"conventional-changelog-cli": "5.0.0",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"prettier": "3.4.2",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.2",
"vue": "2.7.16",
"vue-template-compiler": "2.7.16"
}
}