-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.92 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
{
"name": "ablab",
"version": "0.0.5",
"description": "A simple library for enabling experimentation.",
"type": "module",
"main": "./dist/cjs/ablab.js",
"module": "./dist/es/ablab.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/ablab.js",
"default": "./dist/es/ablab.js"
}
},
"scripts": {
"build": "npm-run-all clean --parallel build:*",
"build:library": "rollup --config rollup/rollup.lib.config.js",
"build:library-min": "rollup --config rollup/rollup.lib.min.config.js",
"build:cli": "rollup --config rollup/rollup.cli.config.js",
"build:types": "tsc --emitDeclarationOnly",
"prepack": "npm-run-all build",
"prepublishOnly": "npm test",
"clean": "rimraf dist lab-*.tgz",
"clean:deps": "rimraf node_modules",
"test": "jest",
"start:server": "http-server -p 3000 ./"
},
"author": "Richie Casto (https://github.com/rcasto)",
"homepage": "https://github.com/rcasto/ablab#readme",
"repository": {
"type": "git",
"url": "https://github.com/rcasto/ablab.git"
},
"keywords": [
"experimentation",
"ab-testing",
"feature-flags"
],
"license": "MIT",
"dependencies": {
"murmurhash": "2.0.0"
},
"devDependencies": {
"@babel/core": "7.13.13",
"@babel/preset-env": "7.13.12",
"@babel/preset-typescript": "7.13.0",
"@rollup/plugin-commonjs": "18.0.0",
"@rollup/plugin-node-resolve": "11.2.1",
"@rollup/plugin-typescript": "8.2.1",
"@types/jest": "26.0.22",
"babel-jest": "26.6.3",
"http-server": "0.12.3",
"jest": "26.6.3",
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"rollup": "2.42.4",
"rollup-plugin-copy": "3.4.0",
"rollup-plugin-terser": "7.0.2",
"ts-node": "9.1.1",
"tslib": "2.1.0",
"typescript": "4.2.3",
"uuid": "8.3.2"
},
"bin": {
"lab": "dist/cli.js"
},
"jest": {
"setupFiles": [
"./testSetup.js"
]
}
}