-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
76 lines (76 loc) · 2.06 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "ftl-engine",
"version": "0.3.0",
"description": "A scalable, fault-tolerant distributed task runner for complex workflows",
"main": "index.js",
"scripts": {
"pretest": "npm run build",
"test": "nyc --all npm run test_real && npm run lint",
"test_real": "mocha --require source-map-support/register build/test/*Test.js build/test/**/*Test.js build/test/**/**/*Test.js",
"upload_cov": "nyc report --reporter=json && codecov -f coverage/*.json",
"testSingle": "./testSingle.sh",
"lint": "tslint src/*.ts src/**/*.ts",
"clean": "rm -rf build",
"build-full": "npm run clean && npm run typings && tsc",
"build": "tsc",
"typings": "npm run typings-clean && typings install",
"typings-clean": "rm -rf typings",
"prepublish": "npm run build-full"
},
"nyc": {
"include": [
"build/src/*.js",
"build/src/**/*.js",
"build/src/**/**/*.js"
]
},
"bin": {
"ftl-engine": "./bin/ftl-engine"
},
"keywords": [
"workflow",
"etl",
"graph-execution",
"ftl",
"engine"
],
"author": "addisonj",
"license": "MIT",
"devDependencies": {
"@types/async": "2.0.32",
"@types/bunyan": "0.0.31",
"@types/chai": "3.5.2",
"@types/es6-promise": "0.0.32",
"@types/lodash": "4.14.66",
"@types/mocha": "2.2.41",
"@types/raven": "1.2.2",
"@types/shortid": "0.0.28",
"@types/sinon": "1.16.36",
"@types/statsd-client": "0.1.30",
"@types/yargs": "0.0.34",
"bunyan-prettystream": "^0.1.3",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"mocha": "^2.4.5",
"nyc": "^10.0.0",
"sinon": "^1.17.3",
"source-map-support": "^0.4.6",
"tslint": "^3.7.4",
"typescript": "2.3.4",
"typings": "^1.3.1"
},
"dependencies": {
"async": "^2.0.32",
"aws-sdk": "^2.4.7",
"bunyan": "^1.8.1",
"in-publish": "^2.0.0",
"lodash": "^4.10.0",
"raven": "^2.0.2",
"shortid": "^2.2.6",
"simple-swf": "0.4.x",
"source-map-support": "^0.4.0",
"statsd-client": "^0.2.2",
"superagent": "^2.1.0",
"yargs": "4.8.1"
}
}