-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.2 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
{
"name": "node-synch",
"version": "1.0.1",
"description": "Synchronization Primitives in JavaScript",
"main": "lib/index.js",
"scripts": {
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --coverage --verbose",
"watch": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --coverage --verbose --watchAll",
"test:ci": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --ci --coverage --verbose && node ./test/lib/coverage.js",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"type": "module",
"author": "Wilson Nguyen",
"license": "MIT",
"pre-commit": [
"lint",
"test"
],
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.16.0",
"jest": "^28.1.0",
"pre-commit": "^1.2.2"
},
"jest": {
"collectCoverageFrom": [
"lib/*.js"
],
"coverageReporters": ["json-summary", "lcov", "text"]
},
"keywords": [
"synchronization",
"semaphore",
"lock",
"thread",
"multithreading",
"worker",
"atomic",
"shared"
],
"homepage": "https://github.com/PotatoParser/node-synch#readme",
"repository": "github:PotatoParser/node-synch"
}