-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.21 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
{
"name": "moxi",
"version": "0.0.2",
"description": "MOXI is a library for frontend A/B-testing and personalisation of reactive SPA user interfaces.",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "npx mocha",
"build": "webpack --config webpack.config.cjs",
"build:unminified": "webpack --config webpack.prod.unminified.cjs && python clean_build.py",
"build:dev": "webpack --config webpack.dev.cjs && node --experimental-specifier-resolution=node remove-comments.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/schafeld/MOXI.git"
},
"keywords": [
"testing",
"personalisation",
"javascript",
"mutation",
"observer",
"abtesting",
"A/B-Testing",
"experience"
],
"author": "Oliver Schafeld <[email protected]>",
"license": "SEE LICENSE IN README",
"bugs": {
"url": "https://github.com/schafeld/MOXI/issues"
},
"homepage": "https://github.com/schafeld/MOXI#readme",
"devDependencies": {
"chai": "^4.3.7",
"esbuild-loader": "^3.0.1",
"mocha": "^10.2.0",
"sinon": "^15.2.0",
"uglify-js": "^3.17.4",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.9.0"
}
}