-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
36 lines (36 loc) · 1.08 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
{
"name": "aws-thin-ses",
"version": "0.1.0",
"description": "aws thin simple email service client",
"main": "index.js",
"repository": "git@github.nike.com:ngp/aws-thin-ses.git",
"author": "Tim Kye <Timothy.Kye@nike.com>",
"license": "MIT",
"files": [
"index.js",
"lib"
],
"engines": {
"node": ">=4"
},
"scripts": {
"style": "standard \"index.js\" \"lib/**/*.js\" | snazzy",
"style:fix": "standard \"index.js\" \"lib/**/*.js\" --fix",
"test": "npm run style && npm run test:unit",
"test:unit": " blue-tape test/**/**.spec.js | tap-spec",
"test:watch": "npm run test:unit -s & ./node_modules/.bin/chokidar 'src/**/*.js' 'test/**/*.spec.js' --polling -c \"./node_modules/.bin/blue-tape test/**/**.spec.js | node_modules/.bin/tap-spec\""
},
"dependencies": {
"aws-form-urlencoded": "^0.9.1",
"aws4": "^1.6.0",
"request-micro": "^1.2.2"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"blue-tape": "^1.0.0",
"chokidar-cli": "^1.2.0",
"snazzy": "^7.0.0",
"standard": "^10.0.2",
"tap-spec": "^4.1.1"
}
}