-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
77 lines (77 loc) · 2.76 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": "axes-root",
"description": "A module used to change the information of user action entered by various input devices such as touch screen or mouse into the logical virtual coordinates. You can easily create a UI that responds to user actions.",
"private": true,
"scripts": {
"lint": "eslint ./packages/axes/src/**/*.ts",
"packages": "npm run packages:update && npm run packages:build && npm run packages:publish",
"packages:update": "lerna-helper version",
"packages:build": "lerna run build --ignore demo",
"packages:publish": "lerna-helper publish --commit 'chore: update packages versions'",
"docs:build": "rm -rf ./packages/demo/docs/api && jsdoc-to-mdx -c ./jsdoc-to-mdx.json",
"demo:build": "npm run docs:build && npm run build --prefix packages/demo",
"demo:build-docusaurus": "npm run build --prefix demo",
"demo:deploy": "lerna-helper deploy --base @egjs/axes --src packages/demo/build/ --remote upstream",
"demo:deploy-origin": "lerna-helper deploy --base @egjs/axes --src packages/demo/build/ --remote origin",
"release": "lerna-helper release --base @egjs/axes --remote upstream --branch master",
"prepush": "npm run lint",
"commitmsg": "node config/validate-commit-msg.js"
},
"repository": {
"type": "git",
"url": "https://github.com/naver/egjs-axes"
},
"author": {
"name": "NAVER Corp."
},
"license": "MIT",
"homepage": "https://github.com/naver/egjs-axes",
"devDependencies": {
"@cfcs/cli": "^0.0.3",
"@daybrush/jsdoc": "^0.3.12",
"@egjs/release-helper": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"egjs-jsdoc-template": "^1.4.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^37.8.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.22.0",
"jsdoc-to-mdx": "^1.1.2",
"lerna": "^5.1.4",
"typescript": "~4.6.2"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@egjs/build-helper",
"**/@egjs/build-helper/**",
"**/rollup-plugin-vue",
"**/rollup-plugin-vue/**",
"**/karma",
"**/karma/**",
"**/karma-*",
"**/karma-*/**",
"**/lite-fixture",
"**/lite-fixture/**",
"**/hammer-simulator",
"**/hammer-simulator/**",
"**/@types/chai",
"**/@types/chai/**",
"**/@types/karma-chai",
"**/@types/karma-chai/**",
"**/@types/mocha",
"**/@types/mocha/**",
"**/@vue/cli-plugin-eslint",
"**/@vue/cli-plugin-eslint/**",
"**/svelte",
"**/svelte/**"
]
}
}