This repository has been archived by the owner on Apr 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
61 lines (61 loc) · 1.63 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
{
"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"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yahoo/mendel"
},
"scripts": {
"test": "DEBUG='' rimraf test/**/build* && rimraf test/**/.mendelipc && npm run unit && npm run lint",
"lint": "eslint .",
"unit": "DEBUG='' tap test/*.js",
"unit-file": "DEBUG='' tap",
"linkall": "lerna bootstrap",
"bootstrap": "lerna bootstrap",
"coverage": "DEBUG='' tap test/*.js --coverage --nyc-arg=--all",
"coverage-file": "DEBUG='' tap --coverage --coverage-report=lcov",
"coverage-html": "DEBUG='' tap test/*.js --coverage --nyc-arg=--all --coverage-report=lcov",
"coverage-all-individualy": "DEBUG='' for test in $(find test -name *.js -depth 1); do tap $test --coverage ; done"
},
"nyc": {
"exclude": [
"examples/**",
"coverage/**",
"test/**"
]
},
"devDependencies": {
"async": "^2.1.2",
"browserify": "^13.1.1",
"express": "^4.14.0",
"lerna": "^3.6.0",
"mkdirp": "^0.5.1",
"rimraf": "^2.5.4",
"tap": "^8.0.1",
"temp": "^0.8.3",
"tmp": "0.0.31"
}
}