-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.55 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
56
{
"name": "aws-data-science",
"version": "0.2.4",
"description": "Basic Building Blocks for Data Scientist analyzing AWS cloud platforms",
"main": "dist/src/index.js",
"types": "dist/src/index.d.js",
"scripts": {
"build": "rm -rf dist && tsc",
"test": "NODE_ENV=test mocha --opts test/mocha.opts",
"test:watch": "NODE_ENV=test mocha --opts test/mocha.opts --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Anonyfox/aws-data-science.git"
},
"keywords": [
"aws",
"data",
"science",
"data science",
"analytics",
"reporting",
"parsing",
"transforms",
"mining",
"data mining"
],
"author": "Maximilian Stroh <[email protected]>",
"license": "LGPL-3.0",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/lodash": "^4.14.103",
"@types/mocha": "^2.2.48",
"@types/node": "^6.0.100",
"aws-sdk": "^2.196.0",
"aws-sdk-mock": "^1.7.0",
"chai": "^4.1.2",
"mocha": "^5.0.1",
"mocha-typescript": "^1.1.12",
"mock-fs": "^4.4.2",
"source-map-support": "^0.5.3",
"ts-node": "^4.1.0",
"tsconfig-paths": "^3.1.1",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.8.0",
"typescript": "^2.7.2"
},
"dependencies": {
"lodash": "^4.17.5",
"moment": "^2.20.1",
"uuid": "^3.2.1"
},
"peerDependencies": {
"aws-sdk": "^2.196.0"
}
}