UNPKG

2.4 kBJSONView Raw
1{
2 "name": "@misk/cli",
3 "version": "0.1.16-4",
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/prettier": "0.1.16-4",
35 "@misk/test": "0.1.16-4",
36 "axios": "0.19.0",
37 "dayjs": "1.8.14",
38 "fs-extra": "8.0.1",
39 "klaw": "3.0.0",
40 "lodash": "4.17.14",
41 "pkg": "4.4.0",
42 "prettier": "1.18.2",
43 "progress": "2.0.3",
44 "root-require": "0.3.1",
45 "shelljs": "0.8.3",
46 "tslib": "1.10.0",
47 "typescript": "3.5.2",
48 "yargs": "13.2.4"
49 },
50 "devDependencies": {
51 "@misk/dev": "0.1.16-4",
52 "@types/jest": "24.0.15",
53 "jest": "24.8.0",
54 "jest-emotion": "10.0.11",
55 "jest-serializer-html": "7.0.0",
56 "react-testing-library": "6.1.2",
57 "ts-jest": "24.0.2",
58 "@misk/tslint": "0.1.16-4",
59 "@types/fs-extra": "7.0.0",
60 "@types/klaw": "3.0.0",
61 "@types/lodash": "4.14.134",
62 "@types/node": "11.13.1",
63 "@types/shelljs": "0.8.5",
64 "@types/yargs": "13.0.0"
65 },
66 "jest": {
67 "testEnvironment": "node",
68 "transform": {
69 "^.+\\.tsx?$": "ts-jest"
70 },
71 "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
72 "moduleFileExtensions": [
73 "ts",
74 "tsx",
75 "js",
76 "json",
77 "jsx"
78 ]
79 },
80 "prettier": "@misk/prettier",
81 "miskTab": {
82 "name": "@misk/cli",
83 "outDir": "./lib",
84 "slug": "@misk/cli"
85 }
86}