-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.17 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.17 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
{
"name": "@neurodevs/node-signal-processing",
"version": "3.0.5",
"description": "Object-oriented algorithms for digital signal processing.",
"type": "module",
"keywords": [
"nodejs",
"typescript",
"tdd"
],
"license": "MIT",
"author": "Eric Yates <[email protected]>",
"homepage": "https://github.com/neurodevs/node-signal-processing",
"repository": {
"type": "git",
"url": "git+https://github.com/neurodevs/node-signal-processing.git"
},
"bugs": {
"url": "https://github.com/neurodevs/node-signal-processing/issues"
},
"main": "build/index.js",
"scripts": {
"build.ci": "yarn run build.tsc && yarn run lint",
"build.dev": "yarn run build.tsc --sourceMap ; yarn run fix.lint ; prettier --write .",
"build.copy-files": "mkdir -p build && rsync -avzq --exclude='*.ts' ./src/ ./build/",
"build.tsc": "yarn run build.copy-files && tsc",
"clean": "yarn run clean.build",
"clean.all": "yarn run clean.dependencies && yarn run clean.build",
"clean.build": "rm -rf build/",
"clean.dependencies": "rm -rf node_modules/ package-lock.json yarn.lock",
"fix.lint": "eslint --fix --cache '**/*.ts'",
"lint": "eslint --cache '**/*.ts'",
"rebuild": "yarn run clean.all && yarn install && yarn run build.dev",
"update.dependencies": "yarn run clean.dependencies && yarn",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"watch.build.dev": "tsc-watch --sourceMap --onCompilationComplete 'yarn run build.copy-files'",
"watch.lint": "concurrently 'yarn lint' \"chokidar 'src/**/*' -c 'yarn lint.tsc'\""
},
"dependencies": {
"@neurodevs/fili": "^2.0.4"
},
"devDependencies": {
"@neurodevs/eslint-config-ndx": "^1.0.1",
"@neurodevs/generate-id": "^1.1.2",
"@neurodevs/node-tdd": "^0.2.5",
"@neurodevs/prettier-config-ndx": "^1.0.1",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"prettier": "^3.8.1",
"tsc-watch": "^6.2.1",
"typescript": "^5.6.3"
},
"jest": {
"testRunner": "jest-circus/runner",
"maxWorkers": 4,
"testTimeout": 5000,
"testEnvironment": "node",
"testMatch": [
"<rootDir>/build/__tests__/**/*.test.js?(x)"
]
}
}