-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
74 lines (74 loc) · 2.22 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
{
"name": "infinitegrid-root",
"private": true,
"scripts": {
"packages": "npm run packages:update && npm run packages:build && npm run packages:publish",
"packages:update": "lerna-helper version",
"packages:build": "lerna run build --ignore @egjs/ngx-infinitegrid --ignore docs",
"packages:publish": "lerna-helper publish --ignore @egjs/ngx-infinitegrid --commit 'chore: update packages versions'",
"changelog": "lerna-helper changelog --type all --base @egjs/infinitegrid",
"docs:build": "jsdoc-to-mdx -c ./jsdoc-to-mdx.json",
"docs:version": "node ./config/docs-version-up",
"demo:build": "npm run docs:build && npm run docs:version && npm run build --prefix packages/docs && npm run build:storybook --prefix packages/infinitegrid",
"demo:deploy": "gh-pages -d ./demo --dest=./ --add --remote upstream",
"deploy": "lerna-helper deploy --base @egjs/infinitegrid --remote upstream",
"release": "lerna-helper release --base @egjs/infinitegrid --remote upstream --branch master"
},
"repository": {
"type": "git",
"url": "https://github.com/naver/egjs-infinitegrid"
},
"author": "NAVER Corp.",
"license": "MIT",
"keywords": [
"infinitegrid",
"infinite",
"scroll",
"layout",
"DOM",
"html",
"gallery",
"grid",
"pinterest",
"masonry",
"GridLayout",
"JustifiedLayout",
"PackingLayout",
"FrameLayout",
"SquareLayout"
],
"devDependencies": {
"@daybrush/jsdoc": "^0.4.5",
"@egjs/release-helper": "^0.2.8",
"egjs-jsdoc-template": "^1.4.4",
"jsdoc-to-mdx": "^1.2.0",
"lerna": "^4.0.0",
"typescript": "^4.5.0 <4.6.0"
},
"workspaces": {
"packages": [
"packages/*",
"packages/ngx-infinitegrid/projects/ngx-infinitegrid"
],
"nohoist": [
"**/@egjs/build-helper",
"**/@egjs/build-helper/**",
"**/rollup-plugin-vue",
"**/rollup-plugin-vue/**",
"**/karma",
"**/karma/**",
"**/karma-*",
"**/karma-*/**",
"**/@types/chai",
"**/@types/chai/**",
"**/@types/karma-chai",
"**/@types/karma-chai/**",
"**/@types/mocha",
"**/@types/mocha/**",
"**/@vue/*",
"**/@vue/*/**",
"**/vue",
"**/vue/**"
]
}
}