UNPKG

3.6 kBJSONView Raw
1{
2 "name": "@weex-cli/core",
3 "version": "2.0.0-beta.5",
4 "description": "Core for weex-toolkit",
5 "main": "index.js",
6 "scripts": {
7 "build": "yarn format && yarn clean && yarn compile",
8 "clean": "rm -rf ./lib",
9 "compile": "tsc -p ./",
10 "coverage": "jest --coverage",
11 "format": "prettier --write \"**/*.ts\" --loglevel error && tslint -p . --fix",
12 "lint": "tslint -p .",
13 "publish": "yarn build && yarn lint",
14 "precommit": "lint-staged",
15 "snapupdate": "jest --updateSnapshot",
16 "integrate": "jest -c jest-integration.config.json",
17 "test": "jest",
18 "test:watch": "DEBUG=device jest --watch",
19 "watch": "tsc -watch -p ./"
20 },
21 "author": "Mario <faterrole@gmail.com>",
22 "license": "MIT",
23 "publishConfig": {
24 "access": "public"
25 },
26 "dependencies": {
27 "apisauce": "^0.15.1",
28 "app-module-path": "^2.2.0",
29 "async": "^2.6.1",
30 "chrome-opn": "^1.0.1",
31 "cli-spinners": "^1.3.1",
32 "cli-table2": "^0.2.0",
33 "colors": "^1.3.0",
34 "consolidate": "^0.15.1",
35 "cosmiconfig": "^5.0.5",
36 "cross-spawn": "^6.0.5",
37 "debug": "^3.1.0",
38 "download-git-repo": "^1.1.0",
39 "execa": "^0.10.0",
40 "fs-jetpack": "^1.3.0",
41 "handlebars": "^4.0.11",
42 "inquirer": "^6.2.0",
43 "lodash.camelcase": "^4.3.0",
44 "lodash.kebabcase": "^4.1.1",
45 "lodash.lowercase": "^4.3.0",
46 "lodash.lowerfirst": "^4.3.1",
47 "lodash.pad": "^4.5.1",
48 "lodash.padend": "^4.6.1",
49 "lodash.padstart": "^4.6.1",
50 "lodash.repeat": "^4.1.0",
51 "lodash.snakecase": "^4.1.1",
52 "lodash.startcase": "^4.4.0",
53 "lodash.trim": "^4.5.1",
54 "lodash.trimend": "^4.5.1",
55 "lodash.trimstart": "^4.5.1",
56 "lodash.uppercase": "^4.3.0",
57 "lodash.upperfirst": "^4.3.1",
58 "log-update": "^2.3.0",
59 "log-utils": "^1.0.0",
60 "metalsmith": "^2.3.0",
61 "minimatch": "^3.0.4",
62 "multimatch": "^2.1.0",
63 "node-machine-id": "^1.1.10",
64 "npminstall": "^3.11.0",
65 "on-exit": "^1.0.1",
66 "ora": "^2.1.0",
67 "path-exists": "^3.0.0",
68 "pluralize": "^7.0.0",
69 "ramda": "^0.25.0",
70 "semver": "^5.5.0",
71 "userhome": "^1.0.0",
72 "validate-npm-package-name": "^3.0.0",
73 "yargs-parser": "^10.0.0"
74 },
75 "devDependencies": {
76 "@types/cli-table2": "^0.2.1",
77 "@types/colors": "^1.2.1",
78 "@types/jest": "^22.2.3",
79 "@types/node": "^10.0.4",
80 "@types/pluralize": "^0.0.28",
81 "@types/ramda": "^0.25.32",
82 "coveralls": "^3.0.1",
83 "expect": "^23.1.0",
84 "jest": "^23.1.0",
85 "lint-staged": "^7.1.3",
86 "prettier": "^1.14.0",
87 "ramdasauce": "^2.1.0",
88 "sinon": "^5.1.0",
89 "temp-write": "^3.4.0",
90 "ts-jest": "^22.4.6",
91 "tslint": "^5.11.0",
92 "tslint-config-prettier": "^1.13.0",
93 "tslint-config-standard": "^7.0.0",
94 "typescript": "^3.0.1",
95 "unique-temp-dir": "^1.0.0"
96 },
97 "jest": {
98 "testEnvironment": "node",
99 "transform": {
100 "^.+\\.ts$": "ts-jest"
101 },
102 "testRegex": "(\\.|/)(test)\\.ts$",
103 "moduleFileExtensions": [
104 "ts",
105 "js",
106 "json",
107 "node"
108 ]
109 },
110 "prettier": {
111 "printWidth": 120,
112 "semi": false,
113 "singleQuote": true,
114 "trailingComma": "all"
115 },
116 "lint-staged": {
117 "*.ts": [
118 "prettier --write",
119 "tslint --fix",
120 "git add"
121 ],
122 "*.md": [
123 "prettier --write",
124 "git add"
125 ],
126 "*.json": [
127 "prettier --write",
128 "git add"
129 ]
130 },
131 "repository": {
132 "type": "git",
133 "url": "https://github.com/weexteam/weex-toolkit/issues"
134 },
135 "keywords": [
136 "core"
137 ],
138 "gitHead": "263397f2f061646f4fa1d53debf8d3e1620b7cab"
139}