-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.55 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
{
"name": "serverless-git-info",
"version": "1.2.4",
"description": "Serverless plugin for that exposes git info as serverless variables",
"main": "dist/index.js",
"scripts": {
"prebuild": "npm run lint",
"build": "tsc --b tsconfig.app.json",
"lint": "eslint \"**/*.ts\" --ignore-path .gitignore",
"clean": "rimraf out-tsc",
"pretest:build": "npm run clean",
"test:build": "tsc --b tsconfig.spec.json",
"test:exec": "jasmine --config=jasmine.json",
"test": "npm run test:build && nyc npm run test:exec",
"test:cov": "npm run test:build && nyc --reporter=html --reporter=text-summary npm run test:exec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coyoteecd/serverless-git-info.git"
},
"keywords": [
"serverless",
"serverless-plugin",
"aws",
"git"
],
"author": "coyoteecd",
"license": "MIT",
"bugs": {
"url": "https://github.com/coyoteecd/serverless-git-info/issues"
},
"homepage": "https://github.com/coyoteecd/serverless-git-info#readme",
"devDependencies": {
"@types/jasmine": "^4.3.1",
"@types/node": "^16.18.6",
"@types/serverless": "^3.12.9",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jasmine": "^4.5.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"serverless": "^3.25.1",
"typescript": "^4.9.4"
},
"peerDependencies": {
"serverless": "^1.60.0 || ^2.0.0 || ^3.0.0"
}
}