-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 750 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 750 Bytes
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
{
"name": "serverless-now",
"version": "1.0.0",
"description": "Serverless Framework Lambda functions to interact with the UoA ServiceNow.",
"main": "handler.js",
"scripts": {
"start": "sls offline",
"debug": "export SLS_DEBUG=* && node --inspect ./node_modules/.bin/sls offline",
"test": "sls invoke test",
"testw": "nodemon --watch . --exec 'sls invoke test || true'",
"deploy": "npm run test && sls deploy"
},
"keywords": [
"Lambda",
"ServiceNow",
"Serverless",
"Framework"
],
"author": "Sam Kavanagh (tofu.dev)",
"license": "ISC",
"devDependencies": {
"nodemon": "^2.0.3",
"serverless": "^1.68.0",
"serverless-offline": "^6.1.4",
"serverless-mocha-plugin": "^1.12.0"
}
}