-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 676 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 676 Bytes
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
{
"name": "generator-babel-plugin",
"version": "2.0.1",
"description": "Yeoman generator",
"license": "MIT",
"main": "app/index.js",
"repository": "thejameskyle/generator-babel-plugin",
"author": {
"name": "James Kyle",
"email": "me@thejameskyle.com",
"url": "https://github.com/thejameskyle"
},
"scripts": {
"test": "jest --testPathIgnorePatterns /generators/"
},
"files": [
"generators"
],
"keywords": [
"yeoman-generator"
],
"dependencies": {
"lodash": "^4.17.19",
"yeoman-generator": "^4.11.0"
},
"devDependencies": {
"jest": "^26.1.0",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^2.7.0"
}
}