forked from BKKnights/prosper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.51 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
86
87
88
{
"name": "@bkknights/prosper",
"version": "1.0.2",
"description": "A continuously improving, experimentation framework",
"repository": {
"type": "git",
"url": "git+https://github.com/BKKnights/prosper.git"
},
"author": "[email protected]",
"license": "MIT",
"typings": "out/",
"files": [
"out/"
],
"main": "out/index.js",
"homepage": "https://github.com/BKKnights/prosper",
"scripts": {
"build": "yarn clean && tsc -p . -d",
"clean": "npx rimraf out coverage",
"coverage": "yarn test && open coverage/lcov-report/index.html",
"format": "yarn prettier && yarn lint",
"lint": "eslint --fix --quiet 'src/**/*.ts'",
"lint:ci": "eslint --quiet 'src/**/*.ts'",
"prettier": "prettier --write \"./**/*.ts\" \"*.json\"",
"tdd": "jest --watch",
"test": "jest",
"test:ci": "jest --coverage --maxWorkers 4",
"validate": "yarn lint:ci && yarn test:ci",
"watch": "yarn clean; tsc -p . -w"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"yarn lint",
"git add"
],
"src/**/*.json": [
"prettier --write",
"git add"
],
"package.json": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"dependencies": {
"lodash": "^4.17.20"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@commitlint/prompt-cli": "^14.1.0",
"@commitlint/travis-cli": "^16.1.0",
"@kettil/semantic-release-config": "^2.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^9.0.0",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^26.0.10",
"@types/lodash": "^4.14.178",
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"codecov": "^3.7.2",
"eslint": "^7.7.0",
"eslint-config-airbnb-typescript-prettier": "^5.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.0",
"jest-ts-auto-mock": "^2.0.0",
"lint-staged": "^10.2.11",
"prettier": "^2.1.0",
"reflect-metadata": "^0.1.13",
"ts-auto-mock": "^3.1.1",
"ts-jest": "^26.2.0",
"ts-node": "^8.10.2",
"ttypescript": "^1.5.12",
"typescript": "^4.0.2"
},
"private": false
}