-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.24 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
{
"name": "yoko",
"version": "0.2.2",
"description": "Yoko is a Component Generator/Scaffolding Library.",
"license": "MIT",
"repository": "fpoumian/yoko",
"main": "index.js",
"author": {
"name": "Fernando Poumián",
"email": "[email protected]",
"url": "github.com/fpoumian"
},
"engines": {
"node": ">=6"
},
"files": [
"dist",
"index.js"
],
"scripts": {
"test": "jest",
"coverage": "npm test -- --coverage",
"postcoverage": "opn coverage/lcov-report/index.html",
"lint": "eslint src __tests__",
"flow": "flow check",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "babel src -d dist --ignore src/lib/**/__mocks__,src/**/__tests__",
"watch": "npm-watch",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"format-all": "prettier --config ./.prettierrc --write './src/**/*.js' './__tests__/**/*.js'",
"eslint-check": "eslint --print-config .eslintrc | eslint-config-prettier-check",
"precommit": "lint-staged",
"prepublish": "npm run lint && npm test && npm run build",
"postpublish": "git push origin master --follow-tags"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"watch": {
"test": "{src,__test__}/*.js",
"lint": "{src,__test__}/*.js",
"build": "src"
},
"jest": {
"testMatch": [
"<rootDir>/__tests__/*.js*",
"<rootDir>/src/**/__tests__/**/*.js?(x)",
"<rootDir>/src/**/?(*.)(spec|test).js?(x)",
"<rootDir>/scripts/**/__tests__/**/*.js"
],
"testEnvironment": "node"
},
"keywords": [
"react",
"components",
"component",
"generator",
"scaffold"
],
"dependencies": {
"acorn-jsx": "^4.0.1",
"filename-reserved-regex": "^2.0.0",
"fs-extra": "^4.0.1",
"grasp-squery": "^0.4.0",
"is-valid-path": "^0.1.1",
"is-windows": "^1.0.1",
"joi": "12",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"mkdirp-promise": "^5.0.1",
"node-cache": "^4.1.1",
"nunjucks": "^3.0.1",
"prettier": "1.7.4",
"remove-trailing-slash": "^0.1.0",
"sanitize-filename": "^1.6.1",
"yoko-plugin-index-file": "^0.1.3",
"yoko-plugin-main-file": "^0.2.0",
"yoko-plugin-stylesheet-file": "^0.1.1",
"yoko-plugin-tests-file": "^0.1.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^20.0.0",
"babel-preset-env": "^1.1.8",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-2": "^6.18.0",
"documentation": "4.0.0-rc.1",
"eslint": "^4.0.0",
"eslint-config-prettier": "^2.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-flowtype": "^2.29.2",
"eslint-plugin-flowtype-errors": "^3.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"event-to-promise": "^0.8.0",
"flow-bin": "^0.50.0",
"husky": "^0.14.3",
"jest": "^20.0.4",
"jest-cli": "^20.0.0",
"lint-staged": "^4.3.0",
"mock-fs": "^4.4.1",
"npm-watch": "^0.2.0",
"opn-cli": "^3.1.0",
"rimraf": "^2.6.1"
}
}