-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 939 Bytes
/
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
{
"name": "zigne",
"version": "0.0.9",
"description": "Calculate statistical significance (z-test), for e.g. polls.",
"main": "./dist/zigne.node.js",
"browser": "./dist/zigne.browser.js",
"repository": "https://github.com/jarib/zigne",
"author": "[email protected]",
"license": "MIT",
"scripts": {
"build": "NODE_ENV=production webpack",
"prepare": "yarn build",
"test": "NODE_ENV=test jest src/*.test.js",
"tdd": "NODE_ENV=test jest --watch src/*.test.js"
},
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"jest": "^24.9.0",
"regenerator-runtime": "^0.11.1",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7"
}
}