This repository was archived by the owner on May 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 2.04 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
{
"name": "@variate/engine",
"version": "3.3.0",
"description": "Variate AB testing engine for modern applications",
"author": "Valentin Prugnaud <valentin.prugnaud@variate.ca>",
"license": "BSL 1.1",
"main": "dist/variate.js",
"module": "dist/variate.esm.js",
"files": [
"dist"
],
"scripts": {
"docs": "typedoc --out docs src --mode modules --exclude '**/__tests__/**/*.+(ts|tsx|js)' --name Variate && npm run postdocs",
"postdocs": "cp jekyll.config.yml docs/config.yml && touch docs/.nojekyll",
"build": "npm run clean && rollup -c rollup.config.js",
"dev": "npm run clean && rollup -w -c rollup.config.js",
"clean": "rimraf dist/",
"lint": "tslint -c tslint.json src/**/*.ts",
"lint:fix": "eslint --fix src/",
"release": "standard-version -a",
"release:alpha": "npm run release -- --prerelease alpha",
"release:beta": "npm run release -- --prerelease beta",
"test": "jest --coverage --silent"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/variateapp/variate-engine.git"
},
"keywords": [
"ab-testing",
"variate"
],
"bugs": {
"url": "https://github.com/variateapp/variate-engine/issues"
},
"homepage": "https://github.com/variateapp/variate-engine#README.md",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/jest": "^25.2.2",
"cz-conventional-changelog": "^3.2.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.10.2",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"standard-version": "^8.0.0",
"ts-jest": "^26.0.0",
"tslib": "^2.0.0",
"tslint": "^6.1.2",
"typedoc": "^0.17.6",
"typescript": "^3.9.2"
},
"dependencies": {
"@types/get-value": "^3.0.1",
"deepmerge": "^4.2.2",
"get-value": "^3.0.1",
"json-logic-js": "^1.2.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}