-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.77 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.77 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
{
"name": "@statsim/profile",
"version": "0.1.0",
"description": "Streaming CSV data profiler with online statistics",
"main": "src/core/index.js",
"bin": {
"statsim-profile": "src/cli/index.js",
"sprofile": "src/cli/index.js"
},
"files": [
"src/core/",
"src/cli/",
"dist/",
"css/",
"fonts/",
"index.html",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"csv-parse": "^4.6.3",
"drag-and-drop-files": "0.0.1",
"filestream": "^5.0.0",
"online-stats": "^1.4.3",
"through2": "^3.0.1",
"tui-chart": "^3.8.0"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"browserify": "^16.5.0",
"nodemon": "^3.1.11",
"tape": "^4.11.0",
"uglify-es": "^3.3.9"
},
"scripts": {
"prepublishOnly": "npm run build",
"build:main": "browserify src/main.js | uglifyjs -cm > dist/bundle.js",
"build:worker": "browserify src/worker/profile-worker.js | uglifyjs -cm > dist/worker-bundle.js",
"build": "mkdir -p dist && npm run build:main && npm run build:worker",
"build-dev:main": "browserify src/main.js -o dist/bundle.js --debug",
"build-dev:worker": "browserify src/worker/profile-worker.js -o dist/worker-bundle.js --debug",
"build-dev": "mkdir -p dist && npm run build-dev:main && npm run build-dev:worker",
"serve:test": "node tests/support/static-server.js",
"test": "npm run test:unit && npm run test:e2e",
"test:e2e": "npm run build-dev && playwright test",
"test:e2e:headed": "npm run build-dev && PW_KEEP_OPEN=1 playwright test --headed",
"watch": "nodemon --watch src --ext js,css,html --exec 'npm run build-dev'",
"test:unit": "tape tests/unit/*.test.js"
},
"author": "Anton Zemlyansky",
"license": "MIT"
}