-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
50 lines (50 loc) · 1.48 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
{
"name": "powercalculator",
"version": "1.0.0",
"description": "Calculator to help define runtime for A/B Experiments",
"main": "dist/powercalculator.js",
"scripts": {
"test": "NODE_ENV=development jest && npm run vue-check",
"store": "NODE_ENV=development jest ./tests/store.test.js",
"eslint": "npx eslint ./src --ext .js --ext .vue",
"vue-check": "npm run eslint && npm run store",
"build": "rollup -c",
"watch": "rollup -c -w",
"serve": "serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bookingcom/powercalculator.git"
},
"author": "Marcelo Oliveira",
"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.0.1",
"cryptiles": "^4.1.3",
"eslint-plugin-vue": "^6.2.2",
"jest": "^26.0.1",
"jstat": "^1.9.3",
"rands": "^1.0.0",
"regenerator-runtime": "^0.13.5",
"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/"
}
}