├── README.md └── package.json /README.md: -------------------------------------------------------------------------------- 1 | # Action 2 | 3 | A JavaScript library for writing business logic. 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "action", 3 | "version": "0.0.1", 4 | "description": "A JavaScript library for writing business logic.", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "test" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/command/action.git" 12 | }, 13 | "keywords": [ 14 | "action", 15 | "business", 16 | "logic", 17 | "framework", 18 | "library" 19 | ], 20 | "author": "command", 21 | "license": "MIT", 22 | "bugs": { 23 | "url": "https://github.com/command/action/issues" 24 | }, 25 | "homepage": "https://github.com/command/action#readme" 26 | } --------------------------------------------------------------------------------