-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
63 lines (63 loc) · 1.44 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
{
"name": "planout",
"version": "5.3.0",
"dependencies": {
"bignumber.js": "9.0.1",
"sha1": "1.1.1"
},
"types": "types/index.d.ts",
"engines": {
"node": ">=10.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"es6"
],
"unmockedModulePathPatterns": [
"es6/",
"node_modules/"
],
"setupFiles": [
"jest-localstorage-mock"
]
},
"scripts": {
"build": "sh build.sh",
"test": "jest -i",
"build-and-test": "npm run build && npm run test"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-function-bind": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.12.10",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"jest": "^26.6.3",
"jest-localstorage-mock": "^2.4.3",
"source-map-loader": "^1.1.3",
"webpack": "^5.10.1",
"webpack-cli": "^4.2.0"
},
"description": "PlanOut is a framework and programming language for online field experimentation",
"main": "dist/planout.js",
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "https://github.com/HubSpot/PlanOut.js"
},
"keywords": [
"experiments",
"a/b testing",
"multivariate testing",
"experiment design",
"ab",
"split testing"
],
"author": "Guy Aridor",
"license": "https://github.com/facebook/planout/blob/master/LICENSE"
}