-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.49 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
{
"name": "ftl-engine",
"version": "0.0.6",
"description": "A scalable, fault-tolerant distributed task runner for complex workflows",
"main": "index.js",
"scripts": {
"pretest": "npm run build",
"test": "mocha --require source-map-support/register build/test/*Test.js build/test/**/*Test.js && npm run lint",
"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 src/typings",
"prepublish": "npm run build-full",
"coverage": "npm run build && istanbul cover _mocha -- build/test/*Test.js build/test/**/*Test.js"
},
"bin": {
"ftl-engine": "./bin/ftl-engine"
},
"keywords": [
"workflow",
"etl",
"graph-execution",
"ftl",
"engine"
],
"author": "addisonj",
"license": "MIT",
"devDependencies": {
"bunyan-prettystream": "^0.1.3",
"chai": "^3.5.0",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"tslint": "^3.7.4",
"typescript": "^2.0.0",
"typings": "^1.3.1"
},
"dependencies": {
"async": "^2.0.0-rc.3",
"aws-sdk": "^2.4.7",
"bunyan": "^1.8.1",
"in-publish": "^2.0.0",
"lodash": "^4.10.0",
"shortid": "^2.2.6",
"simple-swf": "^0.0.6",
"source-map-support": "^0.4.0",
"statsd-client": "^0.2.2",
"superagent": "^2.1.0",
"yargs": "4.8.1"
}
}