-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.34 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
{
"name": "@evermade/ab-testing-toolkit",
"version": "1.0.0",
"description": "Toolkit for A/B testing.",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/evermade/ab-testing-toolkit.git"
},
"keywords": [
"ab-testing"
],
"scripts": {
"build": "rollup -c",
"compress": "gzip -9 -fkc dist/index.min.js > dist/index.min.js.gz",
"show": "ls -lh dist/index.min.js.gz | awk '{print \"Gzipped script size:\", $5\"B\"}'",
"size": "npm run build -- --silent && npm run compress --silent && npm run show && rm dist/index.min.js.gz",
"watch": "rollup -c -w",
"test": "echo \"No tests specified\" && exit 0"
},
"author": "Teemu Suoranta, Evermade",
"license": "MIT",
"bugs": {
"url": "https://github.com/evermade/menu-toolkit/issues"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^11.1.2",
"@tsconfig/recommended": "^1.0.2",
"@wordpress/eslint-plugin": "^14.3.0",
"@wordpress/prettier-config": "^2.13.0",
"eslint": "^8.37.0",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^5.1.6"
},
"homepage": "https://github.com/evermade/ab-testing-toolkitt#readme",
"publishConfig": {
"access": "public"
}
}