-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.44 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
52
53
54
55
{
"name": "lambda-tile-provider",
"version": "1.0.0",
"description": "Provides tiles based on incoming tile ids",
"main": "index.js",
"scripts": {
"start": "node index.js",
"deploy": "node ./node_modules/dpl/dpl.js",
"nocov": "node ./node_modules/.bin/mocha test/**.test.js",
"test": "semistandard && npm run coverage",
"coverage": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcov -- -R spec",
"lint": "semistandard",
"test:integration": "node ./node_modules/.bin/mocha test/index.integration.js"
},
"files_to_deploy": [
"lib/",
"index.js",
"package.json",
".env"
],
"repository": {
"type": "git",
"url": "git+https://github.com/numo-labs/lambda-tile-provider.git"
},
"author": "Jimmy Ruts <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/numo-labs/lambda-tile-provider/issues"
},
"homepage": "https://github.com/numo-labs/lambda-tile-provider#readme",
"devDependencies": {
"aws-sdk": "^2.3.3",
"chai": "^3.5.0",
"dpl": "^3.0.1",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"semistandard": "^8.0.0",
"sinon": "^1.17.4"
},
"dependencies": {
"async": "^2.0.0-rc.3",
"aws-lambda-helper": "^2.22.0",
"env2": "^2.0.7",
"taggable-searcher": "^6.0.0",
"tv4": "^1.2.7"
},
"semistandard": {
"globals": [
"describe",
"it",
"afterEach",
"beforeEach"
]
}
}