UNPKG

2.11 kBJSONView Raw
1{
2 "name": "@terascope/job-components",
3 "version": "0.13.1",
4 "publishConfig": {
5 "access": "public"
6 },
7 "description": "Teraslice Job Components",
8 "homepage": "https://github.com/terascope/teraslice/tree/master/packages/job-components#readme",
9 "bugs": {
10 "url": "https://github.com/terascope/teraslice/issues"
11 },
12 "repository": {
13 "type": "git",
14 "url": "git+https://github.com/terascope/teraslice.git"
15 },
16 "license": "MIT",
17 "directories": {
18 "lib": "dist",
19 "test": "test"
20 },
21 "files": [
22 "dist/**/*"
23 ],
24 "srcMain": "src/index.ts",
25 "main": "dist/index.js",
26 "typings": "dist/index.d.ts",
27 "scripts": {
28 "lint": "tslint -p tsconfig.build.json -t verbose -e '**/*.json'",
29 "lint:fix": "yarn lint --fix",
30 "prepublishOnly": "yarn build",
31 "build": "tsc --project tsconfig.build.json --pretty",
32 "build:prod": "tsc --project tsconfig.build.json",
33 "build:watch": "yarn build --watch",
34 "test": "jest",
35 "test:watch": "jest --coverage=false --notify --watch --onlyChanged",
36 "test:debug": "env DEBUG='*teraslice*' jest --detectOpenHandles --coverage=false --runInBand",
37 "benchmark": "yarn build; node bench/index.js"
38 },
39 "dependencies": {
40 "@terascope/queue": "^1.1.4",
41 "convict": "^4.4.0",
42 "datemath-parser": "^1.0.6",
43 "debug": "^4.1.0",
44 "is-plain-object": "^2.0.4",
45 "kind-of": "^6.0.2",
46 "lodash.clonedeep": "^4.5.0",
47 "uuid": "^3.3.2"
48 },
49 "devDependencies": {
50 "@types/jest": "^23.3.10",
51 "@types/node": "^10.12.12",
52 "babel-core": "^6.0.0",
53 "babel-jest": "^23.6.0",
54 "benchmark": "^2.1.4",
55 "fs-extra": "^7.0.1",
56 "jest": "^23.6.0",
57 "jest-extended": "^0.11.0",
58 "jest-fixtures": "^0.6.0",
59 "ts-jest": "^23.10.5",
60 "tslint": "^5.0.0",
61 "tslint-config-airbnb": "^5.11.0",
62 "typescript": "^3.2.1"
63 },
64 "engines": {
65 "node": ">=8.0.0"
66 }
67}