├── .gitignore ├── update.js ├── package.json ├── LICENSE.txt └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /update.js: -------------------------------------------------------------------------------- 1 | const fs = require("fs-extra"); 2 | const path = "./node_modules/@egjs"; 3 | 4 | fs.removeSync("./dist"); 5 | fs.readdirSync(path).reduce((acc, file) => { 6 | return acc.then(fs.copy(`${path}/${file}/dist`, `./dist/${file}`)); 7 | }, Promise.resolve()) 8 | .then(() => { 9 | console.log("all egjs modules are moved!!!"); 10 | }); -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "egjs", 3 | "version": "2.2.0", 4 | "description": "egjs is Javascript components group that brings easiest and fastest way to build a web application in your way.", 5 | "main": "index.js", 6 | "homepage": "http://naver.github.io/egjs", 7 | "repository": { 8 | "url": "https://github.com/naver/egjs", 9 | "type": "git" 10 | }, 11 | "scripts": { 12 | "update": "rm -rf node_modules/@egjs && npm i && node ./update.js" 13 | }, 14 | "author": "NAVER corp", 15 | "licenseurl": "https://naver.github.io/egjs/license.txt", 16 | "license": "MIT", 17 | "dependencies": { 18 | "@egjs/agent": "latest", 19 | "@egjs/axes": "latest", 20 | "@egjs/component": "latest", 21 | "@egjs/flicking": "latest", 22 | "@egjs/infinitegrid": "latest", 23 | "@egjs/jquery-pauseresume": "latest", 24 | "@egjs/jquery-transform": "latest", 25 | "@egjs/persist": "latest", 26 | "@egjs/rotate": "latest", 27 | "@egjs/visible": "latest" 28 | }, 29 | "devDependencies": { 30 | "fs-extra": "^4.0.1" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | egjs 2 | 3 | Copyright (c) 2015 NAVER Corp. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | 13 | 14 | The above copyright notice and this permission notice shall be included in 15 | all copies or substantial portions of the Software. 16 | 17 | 18 | 19 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 20 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 21 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 22 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 23 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 24 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 25 | THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 2 | egjs is Javascript components group that brings easiest and fastest way to build a web application in your way. 3 | 4 | 5 | Official website: https://naver.github.io/egjs/ 6 | 7 | * [egjs-agent](https://github.com/naver/egjs-agent) [[website](https://naver.github.io/egjs-agent/)] [[download](https://unpkg.com/@egjs/agent/dist/)] 8 | * [egjs-axes](https://github.com/naver/egjs-axes) [[website](https://naver.github.io/egjs-axes/)] [[download](https://unpkg.com/@egjs/axes/dist/)] 9 | * [egjs-component](https://github.com/naver/egjs-component) [[website](https://naver.github.io/egjs-component/)] [[download](https://unpkg.com/@egjs/component/dist/)] 10 | * [egjs-flicking](https://github.com/naver/egjs-flicking) [[website](https://naver.github.io/egjs-flicking/)] [[download](https://unpkg.com/@egjs/flicking/dist/)] 11 | * [egjs-infinitegrid](https://github.com/naver/egjs-infinitegrid) [[website](https://naver.github.io/egjs-infinitegrid/)] [[download](https://unpkg.com/@egjs/infinitegrid/dist/)] 12 | * [egjs-persist](https://github.com/naver/egjs-persist) [[website](https://naver.github.io/egjs-persist/)] [[download](https://unpkg.com/@egjs/persist/dist/)] 13 | * [egjs-view360](https://github.com/naver/egjs-view360) [[website](https://naver.github.io/egjs-view360/)] [[download](https://unpkg.com/@egjs/view360/dist/)] 14 | * [egjs-view3d](https://github.com/naver/egjs-view3d) [[website](https://naver.github.io/egjs-view3d/)] [[download](https://unpkg.com/@egjs/view3d@latest/dist/)] 15 | * [egjs-grid](https://github.com/naver/egjs-grid) [[website](https://naver.github.io/egjs-grid/)] [[download](https://unpkg.com/@egjs/grid/dist/)] 16 | * [egjs-conveyer](https://github.com/naver/egjs-conveyer) [[website](https://naver.github.io/egjs-conveyer/)] [[download](https://unpkg.com/@egjs/conveyer/dist/)] 17 | * [egjs-imready](https://github.com/naver/egjs-imready) [[website](https://naver.github.io/egjs-imready/)] [[download](https://unpkg.com/@egjs/imready/dist/)] 18 | * [Cross Framework Components](https://github.com/naver/cfcs) [[website](https://naver.github.io/cfcs/)] [[download](https://unpkg.com/@cfcs/core/dist/)] 19 | 20 | 21 | > If you have used egjs 1.x.x, refer to the following document. 22 | > [Migrating From egjs 1.x.x to egjs 2.0.0](https://github.com/naver/egjs/wiki/Migrating-From-egjs-1.x.x-to-egjs-2.0.0) 23 | > 24 | > [egjs 1.5.0](https://github.com/naver/egjs/tree/1.5.0) no longer adds new features. 25 | 26 | ## Articles 27 | https://github.com/naver/egjs/wiki#articles 28 | 29 | ## Issue and PR registration 30 | Please file issues and pull requests to each Github repository. 31 | 32 | ## License 33 | egjs is released under the [MIT license](https://github.com/naver/egjs/blob/master/LICENSE.txt). 34 | 35 | ``` 36 | Copyright (c) 2015 NAVER Corp. 37 | 38 | Permission is hereby granted, free of charge, to any person obtaining a copy 39 | of this software and associated documentation files (the "Software"), to deal 40 | in the Software without restriction, including without limitation the rights 41 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 42 | copies of the Software, and to permit persons to whom the Software is 43 | furnished to do so, subject to the following conditions: 44 | 45 | The above copyright notice and this permission notice shall be included in 46 | all copies or substantial portions of the Software. 47 | 48 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 49 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 50 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 51 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 52 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 53 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 54 | THE SOFTWARE. 55 | ``` 56 | --------------------------------------------------------------------------------