UNPKG

2.44 kBJSONView Raw
1{
2 "name": "@weex-cli/generator",
3 "version": "2.0.0-alpha.2",
4 "description": "Generator for weex-toolkit",
5 "main": "index.js",
6 "types": "./index.d.ts",
7 "scripts": {
8 "build": "yarn format && yarn clean && yarn compile",
9 "clean": "rm -rf ./lib",
10 "compile": "tsc -p ./",
11 "coverage": "jest --coverage",
12 "format": "prettier --write \"**/*.ts\" --loglevel error && tslint -p . --fix",
13 "lint": "tslint -p .",
14 "publish": "npm run compile",
15 "precommit": "lint-staged",
16 "snapupdate": "jest --updateSnapshot",
17 "test": "jest",
18 "test:watch": "jest --watch",
19 "watch": "tsc -watch -p ./"
20 },
21 "author": "balloonzzq <zqzhuang888@qq.com>",
22 "license": "MIT",
23 "dependencies": {
24 "chalk": "^2.4.1",
25 "consolidate": "^0.15.1",
26 "debug": "^4.1.0",
27 "download-git-repo": "^1.1.0",
28 "fs-extra": "^7.0.1",
29 "handlebars": "^4.0.11",
30 "metalsmith": "^2.3.0",
31 "minimatch": "^3.0.4",
32 "multimatch": "^3.0.0",
33 "read-metadata": "^1.0.0",
34 "rimraf": "^2.6.2",
35 "validate-npm-package-name": "^3.0.0"
36 },
37 "devDependencies": {
38 "@types/jest": "^22.2.3",
39 "@types/node": "^10.12.9",
40 "@types/pluralize": "^0.0.28",
41 "@types/ramda": "^0.25.32",
42 "@types/rimraf": "^2.0.2",
43 "coveralls": "^3.0.1",
44 "expect": "^23.1.0",
45 "jest": "^23.1.0",
46 "lint-staged": "^7.1.3",
47 "prettier": "^1.14.0",
48 "ramdasauce": "^2.1.0",
49 "sinon": "^5.1.0",
50 "temp-write": "^3.4.0",
51 "ts-jest": "^22.4.6",
52 "tslint": "^5.11.0",
53 "tslint-config-prettier": "^1.13.0",
54 "tslint-config-standard": "^7.0.0",
55 "typescript": "^3.0.1",
56 "unique-temp-dir": "^1.0.0"
57 },
58 "jest": {
59 "testEnvironment": "node",
60 "transform": {
61 "^.+\\.ts$": "ts-jest"
62 },
63 "testRegex": "(\\.|/)(test)\\.ts$",
64 "moduleFileExtensions": [
65 "ts",
66 "js",
67 "json",
68 "node"
69 ]
70 },
71 "prettier": {
72 "printWidth": 120,
73 "semi": false,
74 "singleQuote": true,
75 "trailingComma": "all"
76 },
77 "lint-staged": {
78 "*.ts": [
79 "prettier --write",
80 "tslint --fix",
81 "git add"
82 ],
83 "*.md": [
84 "prettier --write",
85 "git add"
86 ],
87 "*.json": [
88 "prettier --write",
89 "git add"
90 ]
91 },
92 "repository": {
93 "type": "git",
94 "url": "https://github.com/weexteam/weex-toolkit/issues"
95 },
96 "keywords": [
97 "generator"
98 ],
99 "gitHead": "a59d7376f4a752a0ab5eec4badbfd4e147026b12"
100}