This repository has been archived by the owner on Feb 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
105 lines (105 loc) · 2.89 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
{
"name": "azion-framework-adapter",
"version": "0.4.0",
"description": "Command line tool that builds Jamstack projects targeting Azion's Edge Functions.",
"main": "dist/main.js",
"bin": {
"azion-framework-adapter": "dist/main.js",
"azfa": "dist/main.js"
},
"scripts": {
"build": "tsc --build --verbose && copyfiles --up 1 src/libs/**/* ./dist",
"build:all": "npm i && npm run build && npm i --package-lock",
"build:tests": "tsc -p test",
"clean": "rimraf dist coverage .nyc_output test-results",
"cover": "nyc --reporter=lcov --reporter=text npm t",
"exec": "node dist/main.js",
"lint": "npx eslint --fix src && npx eslint --fix test",
"test": "rimraf ./out && npm run build && npm run build:tests && mocha --recursive ./out/ts/",
"rebuild:all": "npm run clean && npm run build:all",
"e2e": "rimraf ./out && npm run build && npm run build:tests && mocha ./out/e2e-test/*.test.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/*.json",
"README.md",
"LICENSE"
],
"author": "Azion Technologies",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/aziontech/azion-framework-adapter.git"
},
"keywords": [
"jamstack",
"cli",
"azion",
"build",
"publish"
],
"dependencies": {
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"acorn": "^8.8.2",
"ast-types": "^0.14.2",
"commander": "^8.3.0",
"cookie": "^0.5.0",
"esbuild": "^0.17.10",
"fast-glob": "^3.2.12",
"mock-fs": "^5.2.0",
"pcre-to-regexp": "^1.1.0",
"simple-git": "^3.15.0",
"ts-results": "^3.3.0",
"tslib": "^2.5.0",
"xxhashjs": "^0.2.2"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/chai-as-promised": "^7.1.4",
"@types/chai-spies": "^1.0.3",
"@types/cookie": "^0.5.1",
"@types/mocha": "^9.0.0",
"@types/mock-fs": "^4.13.1",
"@types/node": "^16.11.9",
"@types/rewire": "^2.5.28",
"@types/sinon": "^10.0.13",
"@types/xxhashjs": "^0.2.2",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-spies": "^1.0.0",
"copyfiles": "^2.4.1",
"eslint": "^8.16.0",
"mocha": "^9.1.3",
"mochawesome": "^7.0.1",
"mock-fs": "^5.2.0",
"nyc": "^15.1.0",
"rewire": "^3.0.2",
"rimraf": "^3.0.2",
"sinon": "^15.0.1",
"source-map-support": "^0.5.21",
"typescript": "^4.7.2"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"sourceMap": true,
"produce-source-map": true,
"exclude": [
"**/*.d.ts",
"coverage",
"test-results",
"test",
"libs/**"
],
"all": true
},
"bugs": {
"url": "https://github.com/aziontech/azion-framework-adapter/issues"
},
"homepage": "https://github.com/aziontech/azion-framework-adapter#readme"
}