-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.98 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.98 KB
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
{
"name": "powercalculator",
"version": "1.0.0",
"description": "Calculator to help define runtime for A/B Experiments",
"main": "dist/powercalculator.js",
"scripts": {
"test": "yarn test:unit && yarn test:verifyMath && yarn lint",
"test:unit": "NODE_ENV=development jest",
"test:verifyMath": "NODE_ENV=development jest ./tests/verification.test.js",
"lint": "eslint ./src --ext .js --ext .vue",
"build:dev": "rollup -c",
"build:production": "rollup -c --environment INCLUDE_DEPS,BUILD:production",
"build:watch": "rollup -c -w",
"serve": "serve",
"format": "prettier --write src/**/*.{vue,js}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bookingcom/powercalculator.git"
},
"author": "Marcelo Oliveira",
"contributors": [
"Sebastian Sastoque",
"Alberto Martinez de Murga"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/bookingcom/powercalculator/issues"
},
"homepage": "https://github.com/bookingcom/powercalculator#readme",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-jest": "^26.6.3",
"core-js": "^3.11.1",
"cryptiles": "^4.1.3",
"csv": "^5.5.0",
"eslint-plugin-vue": "^6.2.2",
"jest": "^26.0.1",
"jstat": "^1.9.3",
"prettier": "^2.3.0",
"rands": "^1.0.0",
"regenerator-runtime": "^0.13.7",
"rollup": "^2.38.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-css-only": "^2.0.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-vue": "^5.1.9",
"serve": "^11.3.2",
"vue": "^2.5.6",
"vue-template-compiler": "^2.5.6",
"vuex": "^3.0.1"
},
"jest": {
"testURL": "http://localhost/",
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"prettier": {
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"dependencies": {
"browserslist": "^4.21.4"
}
}