-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.68 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.68 KB
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
{
"name": "datapipe-js",
"version": "0.3.31",
"description": "dataPipe is a data processing and data analytics library for JavaScript. Inspired by LINQ (C#) and Pandas (Python)",
"main": "dist/cjs/data-pipe.js",
"module": "dist/esm/data-pipe.mjs",
"typings": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/data-pipe.mjs",
"require": "./dist/cjs/data-pipe.js"
},
"./array": {
"import": "./array/index.mjs",
"require": "./array/index.js"
},
"./string": {
"import": "./string/index.mjs",
"require": "./string/index.js"
},
"./utils": {
"import": "./utils/index.mjs",
"require": "./utils/index.js"
}
},
"scripts": {
"test": "jest",
"test:dev": "jest --watch",
"test:dev:debug": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
"build": "npx rollup -c && node copy-types.js",
"build:publish": "npm run build && npm publish",
"deploy": "npm run docs && npx gh-pages -d docs",
"dev": "npx rollup --config rollup.config.dev.js --watch",
"lint": "npx eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/falconsoft/dataPipe.git"
},
"author": "Pavlo Paska - ppaska@falconsoft-ltd.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/falconsoft/dataPipe/issues"
},
"homepage": "https://www.datapipe-js.com/",
"keywords": [
"data",
"data-analysis",
"LINQ",
"data-wrangling",
"pandas",
"data-management",
"data-science",
"data-manipulation",
"json",
"data-mungling",
"data-cleaning",
"data-clensing"
],
"devDependencies": {
"@types/jest": "^24.9.1",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"husky": "^4.2.5",
"jest": "^24.9.0",
"jest-fetch-mock": "^2.1.2",
"rollup": "^1.31.1",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-livereload": "^1.0.4",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-typescript2": "^0.25.3",
"rollup-plugin-uglify": "^6.0.4",
"ts-jest": "^24.3.0",
"typedoc": "^0.17.3",
"typedoc-plugin-markdown": "^2.2.17",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test"
}
}
}