-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
75 lines (75 loc) · 2.29 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
{
"name": "alephbet",
"version": "0.27.0",
"author": "Yoav Aner <[email protected]>",
"files": [
"lib",
"dist",
"src",
"vendor",
"test"
],
"jest": {
"testRegex": "/test/.+_test\\.js?",
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"dependencies": {
"sha1": "^1.1.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"@babel/eslint-plugin": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/plugin-transform-object-assign": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"babel-jest": "^28.1.1",
"babel-loader": "^8.2.3",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow-functions": "^3.1.4",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^28.1.1",
"lodash": "^4.17.21",
"webpack": "^5.66.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1"
},
"scripts": {
"prepare": "yarn run build-commonjs && yarn run build-esm",
"build": "webpack && yarn run build-commonjs && yarn run build-esm",
"build-commonjs": "node_modules/.bin/babel --env-name commonjs --source-root src --out-dir dist/commonjs --copy-files --quiet src",
"build-esm": "node_modules/.bin/babel --env-name esm --source-root src --out-dir dist/esm --copy-files --quiet src",
"analyze": "webpack --analyze",
"test": "jest --verbose",
"watch": "jest --watch",
"debug": "node --inspect-brk node_modules/.bin/jest --runInBand"
},
"description": "AlephBet is a pure-javascript A/B (multivariate) testing framework for developers.",
"main": "dist/commonjs/alephbet.js",
"browser": "./dist/esm/alephbet.js",
"repository": {
"type": "git",
"url": "https://github.com/Alephbet/alephbet.git"
},
"keywords": [
"A/B Testing",
"Multivariate",
"Browser",
"Browserify"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Alephbet/alephbet/issues"
},
"homepage": "https://github.com/Alephbet/alephbet"
}