-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
115 lines (115 loc) · 3.09 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "zebras",
"version": "0.0.20",
"description": "Functional JS data analysis library built with Ramda",
"main": "src/index.js",
"types": "src/index.d.ts",
"module": "es/index.js",
"unpkg": "dist/index.umd.js",
"jsdelivr": "dist/index.umd.js",
"scripts": {
"prebuild": "npm run clean",
"build:es": "cross-env NODE_ENV=es babel source --out-dir es",
"build:cjs": "cross-env NODE_ENV=cjs babel source --out-dir src",
"build:umd": "cross-env NODE_ENV=production rollup -c",
"build": "npm run build:es && npm run build:cjs && npm run build:umd && cp source/index.d.ts src/index.d.ts",
"test": "cross-env NODE_ENV=test nyc --reporter=html --reporter=text --reporter=lcov mocha --timeout=3000 --recursive --require @babel/register",
"build:docs": "jsdoc --configure .jsdoc.json",
"watch:docs": "onchange 'source/**/*.js' -- npm run build:docs",
"watch:test": "onchange 'test/**/.js' 'source/**/*.js' -- npm run test",
"serve:docs": "live-server ./docs",
"dev:docs": "npx run-p watch:docs serve:docs",
"clean": "rimraf es/* src/* dist/* coverage/*",
"prepublish": "npm run build"
},
"keywords": [
"data",
"dataframe",
"data-science",
"data-analysis",
"pandas",
"csv",
"r"
],
"files": [
"es",
"src",
"dist"
],
"author": "Nick Levine",
"license": "ISC",
"repository": "https://github.com/nickslevine/zebras",
"dependencies": {
"@types/node": "^10.12.18",
"cli-table3": "^0.5.1",
"csv-parse": "^4.3.1",
"ramda": "^0.26.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"coveralls": "^3.0.3",
"cross-env": "^5.2.0",
"docdash": "^1.0.2",
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-mocha": "^5.2.1",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"jsdoc": "^3.5.5",
"lint-staged": "^8.1.0",
"live-server": "^1.2.1",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"npm-run-all": "^4.1.5",
"nyc": "^13.1.0",
"onchange": "^5.2.0",
"prettier": "^1.15.3",
"rimraf": "^2.6.3",
"rollup": "^1.1.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-babel-minify": "^7.0.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^4.0.0"
},
"prettier": {
"semi": false,
"tabWidth": 2,
"useTabs": false,
"singleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "avoid"
},
"eslintConfig": {
"extends": [
"airbnb-base",
"plugin:prettier/recommended"
],
"plugins": [
"mocha"
],
"env": {
"mocha": true
}
},
"husky": {
"hooks": {
"precommit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"npm run prettier",
"npm test",
"git add"
]
}
}