-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.24 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
{
"name": "@segment/fql-ts",
"version": "1.10.1",
"main": "dist/cjs/index.js",
"browser": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"bin": "dist/cjs/index.js",
"sideEffects": false,
"scripts": {
"test": "jest",
"build": "rm -rf dist && tsc && tsc -p tsconfig.cjs.json",
"lint": "tslint src/**/*.ts",
"prepare": "npm run build"
},
"files": [
"package.json",
"dist"
],
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.168",
"jest": "^27.0.6",
"lodash": "^4.17.21",
"ts-jest": "^27.0.4",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.5"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 100
},
"lint-staged": {
"linters": {
"*.ts": [
"yarn lint",
"prettier --write",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"ignore": [
"examples/**/generated/**",
"**/__snapshots__/**"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS; printf \"\n\n\""
}
},
"dependencies": {}
}