-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.74 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
{
"name": "vue-promise-dialogs-monorepo",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"switch-vue2": "cd packages/core && npm run switch-vue2",
"switch-vue3": "cd packages/core && npm run switch-vue3",
"test:vue2": "npm run switch-vue2 && cd packages/tests-vue2 && npm run test",
"test:vue3": "npm run switch-vue3 && cd packages/tests-vue3 && npm run test",
"test": "npm run test:vue2 && npm run test:vue3",
"demo": "cd packages/demo && npm run dev",
"demo:build": "cd packages/demo && npm run build",
"build": "cd packages/core && npm run build",
"prerelease": "npm run lint && npm run test && npm run build",
"release": "commit-and-tag-version --preset @djaler/standard",
"release:github": "conventional-github-releaser --preset @djaler/standard",
"prepublishOnly": "cd packages/core && npm run publish"
},
"packageManager": "[email protected]",
"devDependencies": {
"@djaler/conventional-changelog-standard": "1.2.0",
"@djaler/eslint-config-typescript": "0.0.9",
"commit-and-tag-version": "10.1.0",
"conventional-github-releaser": "3.1.5",
"eslint": "8.21.0",
"eslint-import-resolver-typescript": "3.5.5",
"nano-staged": "0.8.0",
"simple-git-hooks": "2.8.1",
"typescript": "4.4.2"
},
"pnpm": {
"packageExtensions": {
"vue-template-compiler": {
"peerDependencies": {
"vue": "2.x"
}
}
}
},
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/simple-git-hooks && ./node_modules/.bin/nano-staged"
},
"nano-staged": {
"*.{js,ts}": "eslint --fix"
},
"publishConfig": {
"directory": "packages/core/publishDirectory"
}
}