-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.01 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.01 KB
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
{
"name": "@packt/serverless-plugin-package",
"version": "1.0.12",
"description": "A serverless plugin to expose package.json variables",
"main": "lib/index.js",
"scripts": {
"ci:lint": "npm run lint --silent -- --format junit",
"ci:test": "nyc --nycrc-path .nycrc.ci.js npm run test -- --tap | tap-xunit",
"ci:coverage-check": "nyc check-coverage --nycrc-path .nycrc.ci.js",
"ci:coverage-report": "nyc report --nycrc-path .nycrc.ci.js --reporter=text --reporter=lcov --reporter=json",
"build": "tsc",
"lint": "eslint '**/!(*.d).ts'",
"lint:fix": "npm run lint --silent -- --fix",
"task:update": "npx npm-check -uE",
"task:pin": "npx npm-pin-dependencies",
"test": "ava --config .avarc.js",
"test:cover": "nyc --nycrc-path .nycrc.js npm run test --silent",
"test:watch": "nodemon -e ts -x npm run test:cover --silent",
"postversion": "git push --tags"
},
"keywords": [
"serverless",
"serverless plugin",
"package"
],
"author": "Packt Publishing LTD",
"contributors": [
{
"name": "James Macmillan",
"email": "jamesm@packt.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/PacktDev/serverless-plugin-package.git"
},
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"serverless": "1.49.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "0.1.3",
"@types/node": "12.7.2",
"@types/serverless": "1.18.2",
"@types/sinon": "7.0.13",
"@typescript-eslint/eslint-plugin": "2.0.0",
"@typescript-eslint/parser": "1.13.0",
"ava": "2.2.0",
"eslint": "6.2.0",
"eslint-config-prettier": "6.1.0",
"eslint-plugin-ava": "7.1.0",
"eslint-plugin-prettier": "3.1.0",
"nodemon": "1.19.1",
"nyc": "14.1.1",
"prettier": "1.18.2",
"sinon": "7.4.1",
"source-map-support": "0.5.13",
"tap-xunit": "2.4.1",
"ts-node": "8.3.0",
"typescript": "3.5.3"
}
}