forked from Gmousse/dataframe-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·83 lines (83 loc) · 2.94 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@luyangshare93/dataframe-js",
"version": "1.5.0",
"description": "Immutable and functional data structure for datascientists and developpers",
"keywords": [
"DataFrame",
"data",
"immutable",
"sql",
"structured",
"wrangling",
"datascience",
"browser"
],
"browser": {
"fs": false
},
"homepage": "https://gmousse.gitbooks.io/dataframe-js/",
"bugs": "https://github.com/Gmousse/dataframe-js/issues",
"repository": {
"type": "git",
"url": "[email protected]:SingleronBio/dataframe-js.git"
},
"main": "./lib/index.js",
"scripts": {
"lint": "check-node-version --node \">= 4\" && eslint -c .eslintrc ./src || check-node-version --node \"< 4\"",
"prettier": "prettier --write 'src/**/*'",
"test": "cross-env NODE_ENV=production nyc ava 'tests/*.test.js'",
"test:watch": "cross-env NODE_ENV=production nyc ava --watch 'tests/*.test.js'",
"posttest": "npm run lint",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"doc": "node doc/doc.js",
"predts": "shx mkdir -p ../tmp-dfjs && cd ../tmp-dfjs && npm i ../dataframe-js",
"dts": "cd ../tmp-dfjs && dts-gen -m dataframe-js --overwrite -f ../dataframe-js/dataframe-js.d.ts",
"postdts": "shx rm -rf ../tmp-dfjs",
"build:cjs": "cross-env NODE_ENV=production babel src/ -d lib/ --no-comments",
"build:iife": "rollup -c",
"build:iife:min": "cross-env NODE_ENV=production rollup -c",
"prebuild": "npm run test && shx rm -rf dist lib",
"build": "npm run build:cjs && npm run build:iife && npm run build:iife:min",
"postbuild": "npm run doc && npm run dts"
},
"author": {
"name": "Guillaume Mousnier",
"email": "[email protected]",
"url": "https://twitter.com/DatMousse"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "~7.2.3",
"@babel/core": "~7.2.2",
"@babel/plugin-proposal-class-properties": "~7.2.3",
"@babel/plugin-transform-regenerator": "~7.0.0",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"ava": "~3.13.0",
"check-es3-syntax-cli": "~0.2.1",
"check-node-version": "~4.0.3",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"documentation": "^13.1.0",
"dts-gen": "~0.6.0",
"eslint": "~7.12.0",
"nyc": "^11.7.1",
"rollup": "~1.0.0",
"rollup-plugin-babel": "^4.2.0",
"rollup-plugin-commonjs": "~9.2.0",
"rollup-plugin-node-resolve": "~4.0.0",
"rollup-plugin-uglify": "^6.0.4",
"shx": "^0.3.2"
},
"dependencies": {
"core-js": "^3.1.4",
"d3-dsv": "~1.0.10",
"d3-request": "~1.0.6",
"regenerator-runtime": "^0.13.3"
},
"ava": {
"require": [
"@babel/register"
]
}
}