UNPKG

2 kBJSONView Raw
1{
2 "name": "@misk/cli",
3 "version": "0.1.5-22",
4 "license": "SEE LICENSE IN https://github.com/square/misk-web",
5 "description": "Misk-Web CLI Build Tool",
6 "author": "Square/Misk Authors (https://github.com/square/misk-web/graphs/contributors)",
7 "main": "lib/index.js",
8 "bin": {
9 "miskweb": "lib/index.js"
10 },
11 "files": [
12 "lib"
13 ],
14 "engines": {
15 "node": ">= 0.2.0",
16 "yarn": "YARN NO LONGER USED - use npm instead."
17 },
18 "dependencies": {
19 "dayjs": "1.8.12",
20 "fs-extra": "7.0.1",
21 "klaw": "3.0.0",
22 "lodash": "4.17.11",
23 "pkg": "4.3.7",
24 "prettier": "1.16.4",
25 "shelljs": "0.8.3",
26 "tslib": "1.9.3",
27 "typescript": "3.4.2",
28 "yargs": "13.2.2"
29 },
30 "devDependencies": {
31 "@misk/dev": "0.1.5-22",
32 "@misk/tslint": "0.1.5-22",
33 "@types/fs-extra": "5.0.5",
34 "@types/klaw": "3.0.0",
35 "@types/lodash": "4.14.123",
36 "@types/node": "11.13.1",
37 "@types/shelljs": "0.8.4",
38 "@types/yargs": "13.0.0"
39 },
40 "preferGlobal": true,
41 "scripts": {
42 "clean": "rm -rf lib",
43 "ci-build": "npm run-script clean && npm run-script lib",
44 "lib": "npm run-script build",
45 "lint": "prettier --write --config package.json \".{/src/**/,/}*.{md,css,sass,less,json,js,jsx,ts,tsx}\"",
46 "start": "node lib/index.js",
47 "watch": "./node_modules/.bin/tsc -w",
48 "build": "npm run-script clean && npm run-script buildcli",
49 "buildcli": "./node_modules/.bin/tsc",
50 "buildrun": "npm run-script build && npm run-script start",
51 "prepare": "npm run-script ci-build && npm run-script buildcli",
52 "precommit": "npm run-script lint",
53 "smooth-release": "smooth-release"
54 },
55 "prettier": {
56 "arrowParens": "avoid",
57 "bracketSpacing": true,
58 "jsxBracketSameLine": false,
59 "printWidth": 80,
60 "semi": false,
61 "singleQuote": false,
62 "tabWidth": 2,
63 "trailingComma": "none",
64 "useTabs": false
65 },
66 "miskTab": {
67 "name": "@misk/cli",
68 "outDir": "./lib",
69 "slug": "@misk/cli"
70 }
71}