-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.79 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
{
"name": "@youwol/dataframe",
"description": "A Panda like dataframe in TypeScript",
"version": "0.1.0-wip",
"author": "fmaerten@youwol.com",
"homepage": "https://github.com/youwol/dataframe#README.md",
"main": "dist/@youwol/dataframe.js",
"types": "src/index.ts",
"scripts": {
"clean": "del-cli dist",
"auto-gen": "python template.py",
"build": "yarn build:dev",
"pre-build": "yarn clean",
"build:dev": "yarn pre-build && webpack --mode development",
"build:prod": "yarn pre-build && webpack --mode production",
"lint-check": "yarn lint-prettier-check && yarn lint-eslint-check",
"lint-prettier-check": "prettier --check ./src",
"lint-eslint-check": "eslint ./src",
"test": "jest -i",
"test-coverage": "jest -i --collect-coverage",
"doc": "typedoc",
"publish-npm-public": "yarn build:prod && yarn test-coverage && yarn publish --access public"
},
"prettier": "@youwol/prettier-config",
"eslintConfig": {
"extends": [
"@youwol"
]
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/node": "^20.11.19",
"@types/webpack": "^5.28.0",
"@youwol/eslint-config": "^1.2.1",
"@youwol/jest-preset": "^1.2.1",
"@youwol/prettier-config": "^1.2.1",
"@youwol/tsconfig": "^1.2.1",
"del-cli": "^5.1.0",
"isomorphic-fetch": "^3.0.0",
"ts-loader": "9.5.0",
"ts-node": "10.9.2",
"tsx": "4.7.1",
"typedoc": "^0.25.7",
"typescript": "5.3.3",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.9.1",
"webpack-cli": "5.1.4"
},
"webpm": {
"dependencies": {},
"aliases": []
}
}