package.json (1054B)
1 { 2 "name": "cq", 3 "version": "0.0.1", 4 "main": "index.js", 5 "workspaces": [ 6 "packages/app" 7 ], 8 "directories": { 9 "doc": "docs" 10 }, 11 "scripts": { 12 "test": "echo \"Error: no test specified\" && exit 1", 13 "version:major": "node util/version.js major", 14 "version:minor": "node util/version.js minor", 15 "version:patch": "node util/version.js patch", 16 "build": "npm run build --workspaces --if-present", 17 "watch:app": "npm run --workspace packages/app watch", 18 "watch": "npx -y concurrently 'npm run watch:app'", 19 "serve:app": "npm run --workspace packages/app serve", 20 "serve": "npx -y concurrently 'npm run serve:app'", 21 "dev:app": "npm run --workspace packages/app dev", 22 "dev": "npx -y concurrently 'npm run dev:app'" 23 }, 24 "repository": { 25 "type": "git", 26 "url": "git+https://github.com/finwo/cq.git" 27 }, 28 "keywords": [], 29 "author": "", 30 "license": "ISC", 31 "bugs": { 32 "url": "https://github.com/finwo/cq/issues" 33 }, 34 "homepage": "https://github.com/finwo/cq#readme", 35 "description": "" 36 }