-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 960 Bytes
/
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
{
"name": "slackbot-arthur",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/eslint ./src && ./node_modules/.bin/mocha $(find src -name '*.test.js')",
"test.unit": "./node_modules/.bin/mocha $(find src -name '*.test.js')",
"test.unit.watch": "./node_modules/.bin/mocha $(find src -name '*.test.js') --watch",
"test.lint": "./node_modules/.bin/eslint ./src",
"test.lint.fix": "./node_modules/.bin/eslint ./src --fix",
"deploy": "npm run test && ./node_modules/.bin/serverless deploy",
"offline": "./node_modules/.bin/serverless offline"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.14.1",
"eslint-plugin-mocha": "^4.8.0",
"mocha": "^3.2.0",
"proxyquire": "^1.7.11",
"serverless": "^1.5",
"serverless-offline": "^3.8.3",
"sinon": "^1.17.7"
},
"author": "",
"license": "ISC",
"engines": {
"node": ">=4.3.2"
}
}