forked from NathanEpstein/stochastic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.22 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@jwalsh/stochastic",
"version": "0.2.4",
"description": "Simulate Poisson Processes, Brownian motion, Markov chains, and normal random variables",
"main": "lib/index.js",
"types": "lib/main.d.ts",
"keywords": [
"stochastic",
"histogram",
"Markov",
"probability",
"Brownian",
"Normal",
"Poisson"
],
"author": {
"name": "Jason Walsh",
"email": "j@wal.sh"
},
"scripts": {
"docs": "./node_modules/.bin/documentation readme -s API src/index.js",
"examples": "for A in examples/*.js ; do ./node_modules/.bin/babel-node $A; done",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"lint": "./node_modules/.bin/eslint src",
"prepublish": "./node_modules/.bin/babel src --out-dir lib && npm run docs && ./node_modules/.bin/webpack && npm run externs",
"release": "npm run lint && npm run flow && npm run prepublish && npm version patch && git push && git push origin --tags && npm publish --access public",
"build": "./node_modules/.bin/babel src -d lib",
"externs": "./node_modules/.bin/generate-extern -f dist/bundle.min.js -n stoch -o stochastic-extern.js",
"start": "./node_modules/.bin/babel-node src/index.js",
"test": "npm build && ./node_modules/.bin/babel tests/index.js > dist/test.js && node dist/test.js",
"cover": "./node_modules/.bin/nyc npm test && ./node_modules/.bin/tap dist/test.js"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jwalsh/stochastic.git"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"documentation": "^4.0.0-rc.1",
"eslint": "^4.1.1",
"externs-generator": "^0.3.3",
"flow-bin": "^0.49.1",
"google-closure-compiler": "^20170521.0.0",
"jasmine": "^2.8.0",
"jasmine-check": "^1.0.0-rc.0",
"js.spec": "^1.0.0-3",
"lodash": "^4.17.4",
"nyc": "^11.1.0",
"plotter": "^0.5.0",
"tap": "^10.7.2",
"testcheck": "^1.0.0-rc.2",
"webpack": "^3.0.0"
},
"dependencies": {
"ascii-histogram": "^1.2.1",
"babel-plugin-syntax-flow": "^6.18.0",
"compute-kurtosis": "^1.0.0",
"compute-skewness": "^1.0.1",
"lebab": "^2.7.2"
}
}