├── .autod.conf.js ├── .eslintrc ├── .github ├── FUNDING.yml └── workflows │ └── nodejs.yml ├── .gitignore ├── History.md ├── README.md ├── assets ├── alfred-projj.gif ├── git.png ├── github.png └── gitlab.png ├── icon.png ├── index.js ├── info.plist ├── package.json └── test ├── fixtures ├── projj │ └── .projj │ │ ├── cache.json │ │ └── config.json ├── projj_v2 │ └── .projj │ │ ├── cache.json │ │ └── config.json └── projj_v2_multiply │ └── .projj │ ├── cache.json │ └── config.json └── index.test.js /.autod.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atian25/alfred-plugin-projj/HEAD/.autod.conf.js -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "eslint-config-egg" 3 | } 4 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: atian25 4 | -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atian25/alfred-plugin-projj/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atian25/alfred-plugin-projj/HEAD/.gitignore -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atian25/alfred-plugin-projj/HEAD/History.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atian25/alfred-plugin-projj/HEAD/README.md -------------------------------------------------------------------------------- /assets/alfred-projj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atian25/alfred-plugin-projj/HEAD/assets/alfred-projj.gif -------------------------------------------------------------------------------- /assets/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atian25/alfred-plugin-projj/HEAD/assets/git.png -------------------------------------------------------------------------------- /assets/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atian25/alfred-plugin-projj/HEAD/assets/github.png -------------------------------------------------------------------------------- /assets/gitlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atian25/alfred-plugin-projj/HEAD/assets/gitlab.png -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atian25/alfred-plugin-projj/HEAD/icon.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atian25/alfred-plugin-projj/HEAD/index.js -------------------------------------------------------------------------------- /info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atian25/alfred-plugin-projj/HEAD/info.plist -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atian25/alfred-plugin-projj/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/projj/.projj/cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atian25/alfred-plugin-projj/HEAD/test/fixtures/projj/.projj/cache.json -------------------------------------------------------------------------------- /test/fixtures/projj/.projj/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": "/tmp" 3 | } -------------------------------------------------------------------------------- /test/fixtures/projj_v2/.projj/cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atian25/alfred-plugin-projj/HEAD/test/fixtures/projj_v2/.projj/cache.json -------------------------------------------------------------------------------- /test/fixtures/projj_v2/.projj/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": "/tmp/test" 3 | } -------------------------------------------------------------------------------- /test/fixtures/projj_v2_multiply/.projj/cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atian25/alfred-plugin-projj/HEAD/test/fixtures/projj_v2_multiply/.projj/cache.json -------------------------------------------------------------------------------- /test/fixtures/projj_v2_multiply/.projj/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atian25/alfred-plugin-projj/HEAD/test/fixtures/projj_v2_multiply/.projj/config.json -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atian25/alfred-plugin-projj/HEAD/test/index.test.js --------------------------------------------------------------------------------