forked from ucscXena/kaplan-meier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.1 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
{
"name": "kaplan-meier",
"version": "1.0.0",
"description": "Basic kaplan-meier methods",
"main": "index.js",
"scripts": {
"pretest": "webpack --config webpack.test.js --target node test/all.js",
"test": "mocha --timeout 0 build/testBundle",
"lint": "eslint --no-color js/*.js test/*.js",
"clean": "rimraf build/*",
"start": "webpack-dev-server --devtool eval --progress --colors --history-api-fallback",
"build": "webpack",
"build:prod": "npm run build -- --config webpack.prod.js --devtool source-map",
"prebuild": "npm run clean"
},
"author": "Brian Craft",
"devDependencies": {
"assert": "^1.3.0",
"babel": "^5.1.13",
"babel-core": "^5.1.13",
"babel-eslint": "^3.0.1",
"babel-loader": "^5.0.0",
"eslint": "^0.20.0",
"jsverify": "^0.7.1",
"mocha": "^2.2.1",
"mocha-loader": "^0.7.1",
"rimraf": "^2.3.2",
"tmp": "0.0.28",
"html-webpack-plugin": "^1.1.0",
"webpack": "^1.5.3",
"webpack-dev-server": "^1.7.0"
},
"dependencies": {
"babel-runtime": "^5.1.13",
"jStat": "^1.4.3",
"underscore": "^1.7.0"
}
}