-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.03 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.03 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "sdn-pipeline",
"version": "2.1.0",
"description": "data pipeline for SingularData.io",
"main": "index.js",
"scripts": {
"test": "nyc mocha",
"test:ci": "NODE_ENV=ci npm test",
"test:e2e":
"mocha --require ts-node/register --require source-map-support/register 'test/e2e/*.spec.ts'",
"build": "tsc --outDir dist",
"deploy": "bash scripts/deploy.sh",
"start-engine": "npm run build && node dist/engine/index.js",
"create-index": "ts-node scripts/create-index.ts",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{d.ts,ts,json,md}": ["prettier --write", "git add"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/SingularData/data-pipeline.git"
},
"author": "Haoliang Yu <haholiang.yu@outlook.com>",
"license": "MIT",
"homepage": "https://github.com/SingularData/data-pipeline",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/dotenv": "^4.0.3",
"@types/fs-extra": "^5.0.2",
"@types/mocha": "^2.2.48",
"@types/sleep": "0.0.7",
"aws-sdk-mock": "^1.7.0",
"chai": "^4.1.2",
"dotenv-safe": "^5.0.1",
"fs-extra": "^5.0.0",
"husky": "^0.14.3",
"lint-staged": "^6.1.1",
"mocha": "^5.1.0",
"nyc": "^11.6.0",
"prettier": "^1.12.0",
"serverless": "^1.26.1",
"serverless-dotenv-plugin": "^1.0.2",
"sleep-promise": "^6.0.0",
"source-map-support": "^0.5.4",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"typescript": "^2.8.1"
},
"dependencies": {
"@types/delay": "^2.0.1",
"@types/elasticsearch": "^5.0.22",
"@types/http-aws-es": "^1.1.3",
"@types/lodash": "^4.14.107",
"@types/node": "^9.6.5",
"@types/node-fetch": "^1.6.8",
"aws-sdk": "^2.224.1",
"delay": "^2.0.0",
"elasticsearch": "^14.2.2",
"http-aws-es": "^4.0.0",
"lodash": "^4.17.5",
"node-fetch": "^2.1.2",
"uuid": "^3.2.1",
"w3c-dcat": "^0.3.1"
},
"nyc": {
"extension": [".ts"],
"exclude": ["**/*.d.ts"],
"reporter": ["text-summary", "html"],
"all": true
}
}