-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.46 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
{
"name": "@myplanet/multivariate",
"version": "1.1.1",
"description": "A Javascript multivariate testing library",
"repository": {
"type": "git",
"url": "git+https://github.com/paracycle/multivariate.git"
},
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"test": "jest --coverage",
"coveralls": "coveralls < coverage/lcov.info",
"clean": "rm -rf lib",
"prebuild": "npm run clean",
"build": "babel src --out-dir lib",
"prepublishOnly": "npm run build",
"publish": "npm publish --access public"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "4"
}
}
]
],
"plugins": [
[
"transform-runtime"
]
],
"sourceMaps": "inline"
},
"jest": {
"testMatch": [
"<rootDir>/test/**/*.js"
],
"coveragePathIgnorePatterns": [
"<rootDir>/src/connector",
"<rootDir>/node_modules/"
]
},
"author": "Ufuk Kayserilioglu <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"coveralls": "^3.0.0",
"jest": "^21.2.1",
"redis": "^2.8.0"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"es6-promisify": "^5.0.0",
"uuid": "^3.1.0"
},
"keywords": [
"experimentation",
"multivariate",
"testing",
"ab"
]
}