-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
127 lines (127 loc) · 3.03 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@anka-dev/cli",
"version": "1.2.0",
"description": "WeChat miniprogram helper",
"bin": {
"anka": "dist/bin.js"
},
"main": "dist/index.js",
"types": "types/index.d.ts",
"scripts": {
"test": "mocha test/setup.ts test/**/*.spec.ts",
"dev": "tsc -w",
"build": "tsc",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test:coverage": "cross-env NODE_ENV=test nyc mocha test/setup.ts test/**/*.spec.ts",
"test:report": "nyc report && codecov"
},
"repository": {
"type": "git",
"url": "https://github.com/iException/anka/"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/iException/anka/issues"
},
"engines": {
"node": ">=8.9.0"
},
"homepage": "https://github.com/iException/anka",
"dependencies": {
"@babel/core": "^7.3.3",
"@babel/generator": "^7.3.3",
"@babel/traverse": "^7.2.3",
"@babel/types": "^7.3.3",
"cfonts": "^2.1.3",
"chalk": "^2.4.1",
"chokidar": "^2.0.4",
"commander": "^2.15.1",
"del": "^3.0.0",
"download-git-repo": "^1.0.2",
"fs-extra": "^6.0.1",
"glob": "^7.1.2",
"inline-source-map-comment": "^1.0.5",
"inquirer": "^5.2.0",
"jsonminify": "^0.4.1",
"mem-fs": "^1.1.3",
"mem-fs-editor": "^5.1.0",
"ncp": "^2.0.0",
"node-sass": "^4.10.0",
"normalize-path": "^3.0.0",
"npm": "^6.4.1",
"ora": "^3.0.0",
"postcss": "^7.0.2",
"postcss-load-config": "^2.0.0",
"postcss-normalize-whitespace": "^4.0.1",
"replace-ext": "^1.0.0",
"require-package-name": "^2.0.1",
"semver": "^5.6.0",
"source-map-support": "^0.5.9",
"typescript": "^3.1.6",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"@types/babel__core": "^7.1.1",
"@types/babel__generator": "^7.0.0",
"@types/babel__template": "^7.0.2",
"@types/babel__traverse": "^7.0.0",
"@types/chalk": "^2.2.0",
"@types/chokidar": "^1.7.5",
"@types/cssnano": "^4.0.0",
"@types/del": "^3.0.1",
"@types/ejs": "^2.6.0",
"@types/expect": "^1.20.4",
"@types/fs-extra": "^5.0.4",
"@types/glob": "^7.1.1",
"@types/jsonminify": "^0.4.0",
"@types/mem-fs": "^1.1.1",
"@types/mem-fs-editor": "^4.0.1",
"@types/mocha": "^5.2.5",
"@types/node": "^11.12.0",
"@types/node-sass": "^3.10.32",
"@types/normalize-path": "^3.0.0",
"@types/ora": "^1.3.4",
"@types/replace-ext": "0.0.27",
"@types/semver": "^5.5.0",
"codecov": "^3.2.0",
"cross-env": "^5.2.0",
"expect": "^24.6.0",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0"
},
"nyc": {
"report-dir": "./coverage",
"reporter": [
"lcov",
"text-summary"
],
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"all": true,
"watermarks": {
"lines": [
70,
90
],
"functions": [
70,
90
],
"branches": [
70,
90
],
"statements": [
70,
90
]
}
}
}