UNPKG

2.56 kBJSONView Raw
1{
2 "name": "@misk/cli",
3 "version": "0.1.9",
4 "license": "SEE LICENSE IN https://github.com/cashapp/misk-web",
5 "description": "Misk-Web CLI Build Tool",
6 "author": "CashApp/Misk-Web Authors (https://github.com/cashapp/misk-web/graphs/contributors)",
7 "main": "lib/src/index.js",
8 "bin": {
9 "miskweb": "lib/src/index.js"
10 },
11 "files": [
12 "lib"
13 ],
14 "engines": {
15 "node": ">= 0.2.0"
16 },
17 "preferGlobal": true,
18 "scripts": {
19 "clean": "rm -rf lib",
20 "ci-build": "npm run-script clean && npm run-script lib",
21 "lib": "npm run-script build",
22 "lint": "prettier --write --config package.json \".{/src/**/,/}*.{md,css,sass,less,json,js,jsx,ts,tsx}\"",
23 "start": "node lib/src/index.js",
24 "watch": "./node_modules/.bin/tsc -w",
25 "build": "npm run-script clean && npm run-script buildcli && npm run test",
26 "buildcli": "./node_modules/.bin/tsc",
27 "buildrun": "npm run-script build && npm run-script start",
28 "prepare": "npm run-script ci-build && npm run-script buildcli",
29 "precommit": "npm run-script lint",
30 "smooth-release": "smooth-release",
31 "test": "jest --passWithNoTests"
32 },
33 "dependencies": {
34 "@misk/test": "0.1.9",
35 "axios": "0.19.0",
36 "dayjs": "1.8.14",
37 "fs-extra": "8.0.1",
38 "klaw": "3.0.0",
39 "lodash": "4.17.11",
40 "pkg": "4.4.0",
41 "prettier": "1.18.2",
42 "progress": "2.0.3",
43 "root-require": "0.3.1",
44 "shelljs": "0.8.3",
45 "tslib": "1.10.0",
46 "typescript": "3.5.2",
47 "yargs": "13.2.4"
48 },
49 "devDependencies": {
50 "@misk/dev": "0.1.9",
51 "@types/jest": "24.0.15",
52 "jest": "24.8.0",
53 "jest-emotion": "10.0.11",
54 "jest-serializer-html": "7.0.0",
55 "react-testing-library": "6.1.2",
56 "ts-jest": "24.0.2",
57 "@misk/tslint": "0.1.9",
58 "@types/fs-extra": "7.0.0",
59 "@types/klaw": "3.0.0",
60 "@types/lodash": "4.14.134",
61 "@types/node": "11.13.1",
62 "@types/shelljs": "0.8.5",
63 "@types/yargs": "13.0.0"
64 },
65 "jest": {
66 "testEnvironment": "node",
67 "transform": {
68 "^.+\\.tsx?$": "ts-jest"
69 },
70 "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
71 "moduleFileExtensions": [
72 "ts",
73 "tsx",
74 "js",
75 "json",
76 "jsx"
77 ]
78 },
79 "prettier": {
80 "arrowParens": "avoid",
81 "bracketSpacing": true,
82 "jsxBracketSameLine": false,
83 "printWidth": 80,
84 "semi": false,
85 "singleQuote": false,
86 "tabWidth": 2,
87 "trailingComma": "none",
88 "useTabs": false
89 },
90 "miskTab": {
91 "name": "@misk/cli",
92 "outDir": "./lib",
93 "slug": "@misk/cli"
94 }
95}