-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "dataship-frame",
"version": "2.1.1",
"description": "A Data Frame for Javascript. Crunch numbers in node and the browser.",
"main": "lib/frame.js",
"directories": {
"test": "test"
},
"scripts": {
"data": "node test/data/generate.js",
"test": "browserify test/*.js | testling -x $npm_config_browser",
"dist": "mkdir -p dist && browserify lib/frame.js -s Frame > dist/frame.js",
"bench": "browserify benchmark/*.js | testling -x $npm_config_browser",
"bench-datavore": "browserify benchmark/datavore/*.js | testling -x $npm_config_browser"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dataship/frame.git"
},
"keywords": [
"dataframe",
"statistics",
"math",
"pandas",
"R"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/dataship/frame/issues"
},
"homepage": "https://github.com/dataship/frame#readme",
"devDependencies": {
"arrayloader": "^1.1.2",
"async": "^2.1.5",
"benchtap": "^1.0.0",
"floader": "^1.0.1",
"tape": "^4.6.3"
},
"dependencies": {
"bit-array": "^0.2.2"
}
}