This repository was archived by the owner on May 18, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.39 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.39 KB
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
{
"scripts": {
"lint": "eslint --cache ./generators ./__tests__ --ext .js",
"lint:watch": "esw --cache ./generators ./__tests__ --ext .js -w --color",
"test": "jest --silent --config=./test.config.js",
"test:watch": "yarn test --watchAll"
},
"name": "generator-cat",
"version": "0.11.11",
"description": "generator cat",
"homepage": "https://github.com/HsuTing/generator-cat",
"author": {
"name": "hsuting",
"email": "hsuting0106@gmail.com",
"url": "hsuting.com"
},
"main": "./generators/app/index.js",
"keywords": [
"generator-cat",
"yeoman-generator"
],
"dependencies": {
"chalk": "^2.1.0",
"generator-license": "^5.1.0",
"lodash": "^4.17.4",
"parse-author": "^2.0.0",
"validator": "^8.2.0",
"yeoman-generator": "^1.1.1",
"yosay": "^2.0.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.6.1",
"eslint-config-cat": "https://github.com/HsuTing/eslint-config-cat.git",
"eslint-config-google": "^0.9.1",
"eslint-watch": "^3.1.2",
"jest": "^21.0.2",
"pre-commit": "^1.2.2",
"yeoman-assert": "^3.0.0",
"yeoman-test": "^1.7.0"
},
"pre-commit": [
"lint"
],
"repository": "HsuTing/generator-cat",
"license": "MIT"
}