forked from adobe/generator-aio-app
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.41 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
{
"name": "@adobe/generator-aio-app",
"version": "3.1.1",
"description": "Adobe I/O application yeoman code generator",
"main": "generators/index.js",
"scripts": {
"test": "npm run lint && npm run unit-tests",
"lint": "eslint .",
"unit-tests": "jest -c ./jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adobe/generator-aio-app.git"
},
"keywords": [
"yeoman",
"generator",
"codegen",
"aio",
"adobeio",
"app",
"templates"
],
"author": "Adobe Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/generator-aio-app/issues"
},
"homepage": "https://github.com/adobe/generator-aio-app#readme",
"devDependencies": {
"@types/jest": "^25.1.0",
"codecov": "^3.6.5",
"eol": "^0.9.1",
"eslint": "^7.1.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.6.3",
"stdout-stderr": "^0.1.13",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^6.0.0",
"yeoman-environment": "^3.2.0"
},
"dependencies": {
"@adobe/aio-lib-env": "^1.1.0",
"fs-extra": "^9.0.0",
"js-yaml": "^3.14.0",
"lodash.clonedeep": "^4.5.0",
"upath": "^1.2.0",
"yeoman-generator": "^5.4.0"
}
}