-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.15 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
{
"name": "mat-utils",
"version": "0.2.1",
"description": "Utils for Media analytics tool",
"main": "index.js",
"types": "./dist/index.d.ts",
"scripts": {
"create_index": "run-script-os",
"create_index:win32": "echo module.exports = require('./dist'); > index.js",
"create_index:linux:darwin": "echo \"module.exports = require('./dist');\" > index.js",
"build_ts": "./node_modules/.bin/tsc && npm run create_index",
"clear": "run-script-os",
"clear:win32": "(if exist .\\dist rd /s /q .\\dist) && del /q .\\index.js 2>nul",
"clear:linux:darwin": "rm -rf ./dist && rm -f ./index.js",
"clear_docs": "run-script-os",
"clear_docs:win32": "if exist .\\docs rd /s /q .\\docs",
"clear_docs:linux:darwin": "rm -rf ./docs",
"create_nojekyll": "run-script-os",
"create_nojekyll:win32": "type nul > ./docs/.nojekyll",
"create_nojekyll:linux:darwin": "touch ./docs/.nojekyll",
"docs_generate": "./node_modules/.bin/typedoc --out docs ./src",
"docs": "npm run clear_docs && npm run docs_generate && npm run create_nojekyll",
"test": "./node_modules/.bin/mocha -r ts-node/register -r dotenv/config __tests__/**/*.ts",
"start": "npm run clear && npm run build_ts && node -r source-map-support/register -r dotenv/config index.js",
"prepublish": "npm run clear && npm run build_ts",
"postpublish": "npm run clear"
},
"author": "Lukas Macuda <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/zabkwak/mat-utils.git"
},
"bugs": {
"url": "https://github.com/zabkwak/mat-utils/issues"
},
"homepage": "https://github.com/zabkwak/mat-utils#readme",
"license": "MIT",
"engines": {
"node": ">=12"
},
"dependencies": {
"csv-parser": "^3.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/core-js": "^2.5.5",
"@types/mocha": "^9.1.0",
"@types/node": "^12.20.47",
"@types/parquetjs": "^0.10.3",
"chai": "^4.3.6",
"dotenv": "^16.0.0",
"mocha": "^9.2.2",
"parquetjs": "^0.11.2",
"run-script-os-fix": "^1.0.4",
"source-map-support": "^0.5.21",
"ts-node": "^10.7.0",
"tslint": "^6.1.3",
"typedoc": "^0.22.13",
"typescript": "^4.6.2"
},
"peerDependencies": {
"parquetjs": "^0.11.2"
}
}