-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
85 lines (85 loc) · 2.23 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
80
81
82
83
84
85
{
"name": "@artsy/cohesion",
"version": "4.215.0",
"description": "Analytics schema",
"main": "dist/index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/artsy/cohesion.git"
},
"author": "",
"license": "MIT",
"scripts": {
"clean": "rm -rf dist",
"compile": "babel src --out-dir dist --extensions '.ts' --ignore src/**/__tests__",
"docs": "rm -rf doc && yarn typedoc",
"emit-types": "tsc --declaration --emitDeclarationOnly --listEmittedFiles --outDir dist",
"lint": "eslint . --ext .ts --fix",
"pre-publish": "yarn clean && yarn compile && yarn emit-types",
"test": "jest",
"type-check": "tsc --noEmit --pretty",
"watch": "concurrently --raw --kill-others 'yarn compile -w' 'yarn emit-types -w'"
},
"devDependencies": {
"@artsy/auto-config": "1.2.0",
"@babel/cli": "7.8.4",
"@babel/core": "7.9.0",
"@babel/preset-env": "7.9.5",
"@babel/preset-typescript": "7.9.0",
"@types/jest": "25.2.1",
"@typescript-eslint/eslint-plugin": "3.0.2",
"@typescript-eslint/parser": "3.0.2",
"babel-jest": "26.0.1",
"concurrently": "5.1.0",
"eslint": "7.1.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jest": "23.13.2",
"eslint-plugin-simple-import-sort": "5.0.3",
"eslint-plugin-sort-keys-fix": "1.1.1",
"husky": "4.2.5",
"jest": "26.0.1",
"jest-junit": "10.0.0",
"lint-staged": "10.1.7",
"prettier": "2.0.5",
"typedoc": "0.17.7",
"typescript": "4.9.5"
},
"dependencies": {
"core-js": "3"
},
"jest": {
"transform": {
".ts": "babel-jest"
},
"roots": [
"<rootDir>/src"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn type-check"
}
},
"lint-staged": {
"*.@(ts)": [
"yarn lint",
"yarn run prettier --write 'src/**/*.ts'"
]
},
"prettier": {
"semi": false,
"singleQuote": false,
"trailingComma": "all",
"bracketSpacing": true
},
"bugs": {
"url": "https://github.com/artsy/cohesion/issues"
},
"homepage": "https://github.com/artsy/cohesion#readme"
}