-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.93 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
65
66
67
68
69
70
{
"name": "@toolbuilder/semaphore",
"version": "0.1.7",
"description": "Basic semaphore and mutex with both sync and async acquire methods.",
"keywords": [
"semaphore",
"mutex",
"acquire",
"async"
],
"homepage": "https://github.com/toolbuilder/semaphore#readme",
"bugs": {
"url": "https://github.com/toolbuilder/semaphore/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/toolbuilder/semaphore.git"
},
"license": "MIT",
"type": "module",
"types": "./src/index.d.ts",
"main": "cjs/index.js",
"module": "src/index.js",
"exports": {
"types": "./src/index.d.ts",
"require": "./cjs/index.js",
"default": "./src/index.js"
},
"files": [
"cjs",
"src"
],
"scripts": {
"build": "run-s build:*",
"build:cjs": "rollup -c rollup.config.js",
"build:types": "run-s build:types:clean build:types:types",
"build:types:clean": "rimraf src/*.d.ts*",
"build:types:types": "tsc",
"check": "run-s build check:*",
"check:packagejson": "npmPkgJsonLint .",
"check:packfile": "rollup -c rollup.config.test.js",
"check:src": "standard src test",
"check:test": "run-s test",
"check:types": "tsc --project test/tsconfig.json",
"check:uncommitted": "uncommitted",
"prerelease": "run-s check",
"release": "commit-and-tag-version",
"test": "pta --reporter tap 'test/**/*test.js'"
},
"devDependencies": {
"@toolbuilder/package-json-lint-config": "0.1.1",
"@toolbuilder/rollup-plugin-test-tools": "^1.1.0",
"commit-and-tag-version": "^12.5.0",
"npm-package-json-lint": "8.0.0",
"npm-run-all2": "7.0.1",
"pta": "1.2.0",
"rimraf": "^6.0.1",
"rollup": "4.24.4",
"standard": "^17.1.2",
"typescript": "^5.6.3",
"uncommitted": "1.0.0",
"zora": "5.0.3"
},
"npmpackagejsonlint": {
"extends": "@toolbuilder/package-json-lint-config",
"rules": {
"require-types": "error"
}
}
}