-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.49 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
{
"name": "enigma",
"version": "1.0.0",
"description": "Enigma Workflow Interview Challenge",
"main": "index.js",
"scripts": {
"clean": "rm -rf ./build",
"build": "tslint -c tslint.json 'src/**/*.ts' && tsc -p . && cp -r workflows build/",
"workflow": "npm run clean && npm run build && node build/src/index.js",
"test": "npm run build_tests && npm run execute_tests",
"execute_tests": "tslint -c tslint.json 'tests/**/*.ts' && mocha --require source-map-support/register --opts tests/mocha.opts build/tests/**/*-test.js",
"build_tests": "tslint -c tslint.json 'tests/**/*.ts' && npm run clean && tsc -p . && cp -r tests/tsv build/tests/tsv"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enigma-io/workflow-interview-challenge.git"
},
"keywords": [
"Enigma"
],
"author": "Diego Benitez <diego@vokkal.co>",
"license": "SEE LICENSE IN License.txt",
"bugs": {
"url": "https://github.com/enigma-io/workflow-interview-challenge/issues"
},
"homepage": "https://github.com/enigma-io/workflow-interview-challenge#readme",
"dependencies": {
"@types/chai": "^3.4.35",
"@types/concat-stream": "^1.6.0",
"@types/mocha": "^2.2.40",
"@types/node": "^7.0.11",
"chai": "^3.5.0",
"concat-stream": "^1.6.0",
"mocha": "^3.1.0",
"mocha-clean": "^1.0.0",
"request": "^2.81.0",
"source-map-support": "^0.4.15",
"toml": "^2.3.2",
"ts-node": "^3.2.0",
"tslint": "^4.5.1",
"typescript": "^2.2.2"
}
}