forked from YahooArchive/mendel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.69 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
89
90
91
92
{
"name": "mendel-monorepo",
"private": true,
"description": "Build toolchain for experimentation on isomorphic web applications with tree-inheritance and multivariate support.",
"keywords": [
"testing",
"a/b",
"bucket",
"multivariate",
"experiments",
"evaluation",
"build-tools",
"build"
],
"author": "Irae Carvalho <irae@irae.pro.br>",
"contributors": [
{
"name": "David Gomez",
"email": "david.garcia.mx@gmail.com"
},
{
"name": "Rafael Martins",
"email": "snit.ram@gmail.com"
},
{
"name": "Stephan Lee",
"email": "stephanwlee@gmail.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/irae/mendel.git"
},
"workspaces": [
"packages/*",
"examples/*"
],
"engines": {
"npm": ">= 9.0.0",
"node": ">= 20.0.0",
"pnpm": ">= 8.7.4"
},
"scripts": {
"prepare": "husky install",
"commitlint": "commitlint --edit",
"prettier": "prettier --write --list-different .",
"eslint": "eslint --fix --ext js,mjs,ts,jsx,tsx .",
"static": "npm run prettier && npm run eslint",
"test": "npm run static && npm run unit",
"unit": "lerna run --no-sort --no-bail test",
"unit-grouped": "tap ./packages/*/test/*.js --coverage-map=.tap.coverage.map.js --no-check-coverage",
"unit-dirty": "tap --no-check-coverage ./packages/*/test/*.js",
"unit-legacy": "tap ./test/*.js --no-check-coverage",
"coverage": "tap ./packages/*/test/*.js --coverage --nyc-arg=--all",
"coverage-html": "tap ./packages/*/test/*.js --coverage --nyc-arg=--all --coverage-report=lcov",
"coverage-all-individualy": "for test in $(find packages test -depth 3 -regex '.*test/[^/]*\\.js'); do tap $test --coverage --coverage-map=.tap.coverage.map.js --no-check-coverage ; done"
},
"nyc": {
"exclude": [
"examples/**",
"coverage/**",
"test/**"
]
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"async": "^3.2.4",
"browserify": "^17.0.0",
"debug": "^4.3.4",
"eslint": "^8.49.0",
"eslint-plugin-implicit-dependencies": "^1.1.1",
"eslint-plugin-react": "^7.33.1",
"express": "^4.18.2",
"husky": "^8.0.3",
"lerna": "^7.1.4",
"lint-staged": "^14.0.1",
"mkdirp": "^3.0.1",
"prettier": "3.0.3",
"request": "^2.88.2",
"rimraf": "^5.0.1",
"tap": "^16.3.8",
"temp": "^0.9.4",
"tmp": "^0.2.1"
},
"homepage": "https://github.com/irae/mendel#readme",
"bugs": {
"url": "https://github.com/irae/mendel/issues"
},
"packageManager": "pnpm@9.0.6+sha256.0624e30eff866cdeb363b15061bdb7fd9425b17bc1bb42c22f5f4efdea21f6b3"
}