-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.06 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.06 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
63
64
65
66
67
68
69
70
{
"name": "@partkit/async",
"version": "0.0.6",
"description": "A library for async helpers.",
"type": "module",
"exports": {
".": "./dist/index.js",
"./cancellation": "./dist/cancellation/index.js",
"./cancellation/*": "./dist/cancellation/*.js",
"./streams": "./dist/streams/index.js",
"./streams/*": "./dist/streams/*.js",
"./tasks": "./dist/tasks/index.js",
"./tasks/*": "./dist/tasks/*.js"
},
"main": "./dist/index.js",
"module": "dist/index.js",
"files": [
"/dist",
"/src/**/*.ts"
],
"scripts": {
"clean": "rimraf ./.nyc_output ./coverage ./dist",
"prebuild": "npm run clean",
"build": "tsc",
"build:watch": "npm run build -- --watch",
"build:prod": "npm run build -- --project tsconfig.prod.json",
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' 'test/**/*.ts' --fix",
"test": "nyc mocha",
"test:watch": "npm run test -- --watch",
"prerelease": "npm-run-all lint build test build:prod",
"release": "standard-version",
"release:minor": "npm run release -- --release-as minor",
"release:major": "npm run release -- --release-as major",
"release:dry": "standard-version --dry-run",
"release:publish": "git push --follow-tags origin main && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/partkit/async.git"
},
"keywords": [
"async",
"task",
"microtask",
"stream",
"generator"
],
"author": "Alexander Wende",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/partkit/async/issues"
},
"homepage": "https://github.com/partkit/async#readme",
"devDependencies": {
"@partkit/eslint-config": "^0.1.3",
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.31",
"chai": "^4.3.0",
"eslint": "^7.20.0",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.3.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"standard-version": "^9.2.0",
"typescript": "^4.2.2"
}
}