-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) Β· 2.2 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
77
78
79
{
"name": "indexer.cocoapods.org",
"description": "CocoaPods trunk π π Algolia β± indexer",
"private": true,
"scripts": {
"build": "yarn clean:build && babel src --ignore src/**/__tests__ --out-dir dist --extensions '.ts,.js'",
"dev": "babel-node --extensions '.ts,.tsx' src/index.ts | bunyan --color",
"start": "node dist/index.js | bunyan --color",
"clean:build": "rm -rf dist",
"coverage": "jest --coverage",
"postinstall": "yarn build",
"prepublishOnly": "yarn build",
"test": "jest && yarn typecheck && yarn build",
"test:watch": "jest -o --watch",
"typecheck": "tsc"
},
"jest": {
"setupFiles": [
"./jest.setup.js"
],
"moduleDirectories": [
"./node_modules",
"./src"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js?|ts?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "ts-jest",
"^.+\\.sql$": "<rootDir>/test-utils/fileTransformer.js"
},
"testPathIgnorePatterns": [
"__fixtures__",
"/node_modules/"
]
},
"resolutions": {
"babel-core": "^7.0.0-bridge.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.47",
"@babel/core": "^7.0.0-beta.47",
"@babel/node": "7.0.0-beta.47",
"@babel/preset-env": "7.0.0-beta.47",
"@babel/preset-stage-3": "7.0.0-beta.47",
"@babel/preset-typescript": "7.0.0-beta.47",
"@babel/register": "7.0.0-beta.47",
"@types/algoliasearch": "^3.27.3",
"@types/bunyan": "^1.8.4",
"@types/dotenv": "^4.0.3",
"@types/gravatar-url": "^2.0.0",
"@types/jest": "^22.2.3",
"@types/lodash": "^4.14.109",
"@types/ms": "^0.7.30",
"@types/pg": "^7.4.9",
"babel-plugin-inline-import": "^2.0.6",
"babel-plugin-module-resolver": "^3.0.0",
"jest": "22.4.4",
"ts-jest": "^22.4.6",
"tsc": "^1.20150623.0",
"tslint": "^5.8.0",
"typescript": "^3.7.0",
"typescript-babel-jest": "^1.0.5"
},
"dependencies": {
"algoliasearch": "^3.27.1",
"bunyan": "^1.8.12",
"dotenv": "^5.0.1",
"gravatar-url": "^2.0.0",
"lodash": "^4.17.10",
"ms": "^2.1.1",
"pg": "^7.4.3",
"pg-cursor": "^2.1.5"
}
}