-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 2.03 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
{
"bugs": {
"url": "https://github.com/@adobe/aio-lib-launch/issues"
},
"bundleDependencies": false,
"dependencies": {
"@adobe/aio-lib-core-errors": "^3.0.0",
"@adobe/aio-lib-core-logging": "^1.1.2",
"cross-fetch": "^3.0.4",
"swagger-client": "3.9.6"
},
"deprecated": false,
"description": "Adobe I/O Lib",
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "^1.2.0",
"@types/node-fetch": "^2.5.4",
"babel-runtime": "^6.26.0",
"codecov": "^3.5.0",
"dotenv": "^8.1.0",
"eol": "^0.9.1",
"eslint": "^6.2.2",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-jsdoc": "^24.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0",
"jest-fetch-mock": "^3.0.2",
"jest-junit": "^10.0.0",
"jest-plugin-fs": "^2.9.0",
"jsdoc": "^3.6.3",
"jsdoc-to-markdown": "^5.0.0",
"openapi-schema-validator": "^3.0.3",
"stdout-stderr": "^0.1.9",
"tsd-jsdoc": "^2.4.0"
},
"engines": {
"node": ">=10.0.0"
},
"homepage": "https://github.com/@adobe/aio-lib-launch",
"license": "Apache-2.0",
"main": "src/index.js",
"name": "@adobe/aio-lib-launch",
"repository": "https://github.com/@adobe/aio-lib-launch",
"scripts": {
"e2e": "jest --config e2e/jest.config.js",
"generate-docs": "npm run typings && npm run jsdoc",
"jsdoc": "jsdoc2md -t ./docs/readme_template.md src/**/*.js > README.md",
"lint": "eslint src test e2e",
"test": "npm run validate && npm run lint && npm run unit-tests",
"typings": "jsdoc -t node_modules/tsd-jsdoc/dist -r src/*.js -d .",
"posttypings": "node -e \"require('fs').rename('types.d.ts', 'index.d.ts', function(err) { if (err) console.log(err); console.log('File successfully renamed!') })\"",
"unit-tests": "jest --config test/jest.config.js --maxWorkers=2",
"validate": "node bin/validate_spec.js spec/api.json"
},
"version": "0.0.1"
}