-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.37 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.37 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
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
{
"name": "generator-yo",
"version": "0.3.0",
"description": "Yeoman generator that generates a next generation generator with ES6, Jest, Flow and more.",
"homepage": "https://github.com/diegohaz/yo",
"repository": "diegohaz/yo",
"main": "generators/app/index.js",
"files": [
"generators",
".babelrc",
".eslintignore",
"yarn.lock"
],
"engines": {
"node": ">=6"
},
"author": {
"name": "Diego Haz",
"email": "hazdiego@gmail.com",
"url": "https://github.com/diegohaz"
},
"scripts": {
"test": "jest",
"coverage": "npm test -- --coverage",
"postcoverage": "opn coverage/lcov-report/index.html",
"lint": "eslint src",
"flow": "flow check",
"build:clean": "del generators",
"build:copy": "ncp src generators && del \"generators/*/*.test.js\"",
"prebuild": "npm run build:clean && npm run build:copy",
"build": "babel src -d generators --ignore test.js,templates",
"build:watch": "npm-watch",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"prepublish": "npm run lint && npm test && npm run build",
"postpublish": "git push origin master --follow-tags"
},
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "*",
"ignore": "test.js"
}
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "<rootDir>/coverage"
},
"keywords": [
"yeoman-generator",
"generator",
"yeoman"
],
"dependencies": {
"generator-nod": "^0.2.2",
"inquirer-npm-name": "^2.0.0",
"lodash": "^4.17.4",
"yeoman-generator": "^1.0.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^20.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-flow-strip-types": "^6.21.0",
"babel-preset-env": "^1.1.8",
"babel-preset-stage-2": "^6.18.0",
"del-cli": "^1.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-flowtype": "^2.29.2",
"eslint-plugin-flowtype-errors": "^3.0.0",
"eslint-plugin-import": "^2.2.0",
"flow-bin": "^0.48.0",
"jest-cli": "^20.0.0",
"ncp": "^2.0.0",
"npm-watch": "^0.1.7",
"opn-cli": "^3.1.0",
"yeoman-assert": "^3.0.0",
"yeoman-test": "^1.6.0"
},
"license": "MIT"
}