-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
54 lines (54 loc) · 1.43 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
{
"name": "elastic-ts",
"version": "0.12.0",
"description": "TypeScript + Elasticsearch (types, query builder, magic)",
"repository": "git://github.com/jacobwgillespie/elastic-ts.git",
"homepage": "https://github.com/jacobwgillespie/elastic-ts",
"author": "Jacob Gillespie <[email protected]>",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"typescript",
"elasticsearch"
],
"scripts": {
"build": "rollup -c",
"clean": "rm -rf dist",
"fmt": "prettier --write './**/*.ts'",
"lint": "prettier --list-different './**/*.ts'",
"prepack": "rm -rf dist && rollup -c",
"test": "jest",
"type-check": "tsc",
"type-check:tests": "tsc -p tsconfig.test.json",
"watch": "rollup -c -w"
},
"dependencies": {
"@sindresorhus/is": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^27.0.0",
"jest": "^27.2.5",
"prettier": "^2.1.2",
"prettier-plugin-organize-imports": "^3.0.0",
"prettier-plugin-pkg": "^0.17.1",
"rollup": "^2.28.2",
"rollup-plugin-dts": "^4.0.0",
"rollup-plugin-typescript2": "^0.34.0",
"ts-jest": "^27.0.5",
"typescript": "^4.0.3"
},
"sideEffects": false,
"prettier": {
"bracketSpacing": false,
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"source": "src/index.ts"
}