This repository has been archived by the owner on Jan 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.74 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
{
"name": "ts-transforms",
"version": "0.9.0",
"description": "An ETL framework built upon xlucene-evaluator",
"srcMain": "src/index.ts",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"directories": {
"lib": "dist",
"test": "test"
},
"engines": {
"node": ">=8.0.0"
},
"bin": {
"ts-transform": "./bin/ts-transform.js",
"ts-match": "./bin/ts-transform.js"
},
"scripts": {
"prepare": "npm run build",
"lint": "tslint --project tsconfig.json --format verbose",
"lint:fix": "yarn lint --fix",
"build": "rimraf dist; tsc --project tsconfig.json --pretty",
"build:watch": "yarn build --watch",
"test": "jest",
"test:watch": "jest --forceExit=true --coverage=false --notify --watch --onlyChanged",
"test:debug": "env DEBUG='*teraslice*' jest --forceExit=true --detectOpenHandles --coverage=false --runInBand",
"ts-transform": "./bin/ts-transform.js",
"ts-match": "./bin/ts-transform.js"
},
"dependencies": {
"@terascope/job-components": "^0.13.1",
"@types/validator": "^10.9.0",
"@types/yargs": "^12.0.1",
"awesome-phonenumber": "^2.3.3",
"lodash": "^4.17.11",
"valid-url": "^1.0.9",
"validator": "^10.10.0",
"xlucene-evaluator": "^0.2.1",
"yargs": "^12.0.5"
},
"devDependencies": {
"@types/jest": "^23.3.7",
"@types/lodash": "^4.14.117",
"@types/node": "^10.12.12",
"@types/valid-url": "^1.0.2",
"jest": "^23.6.0",
"jest-extended": "^0.11.0",
"rimraf": "^2.6.2",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"typescript": "^3.2.1"
},
"repository": "https://github.com/terascope/ts-transforms.git",
"author": "Terascope, LLC <[email protected]>",
"license": "MIT"
}