-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.11 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.11 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
71
72
73
74
75
76
77
78
79
80
{
"name": "@weegigs/concurrent",
"version": "0.0.0-development",
"description": "Concurrency utilities for Typescript",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Kevin O'Neill <kevin@oneill.id.au>",
"keywords": [
"mutex",
"semaphore",
"typescript",
"async",
"await",
"concurrent",
"promise"
],
"scripts": {
"build": "npm run clean && npm run lint && npm run compile",
"clean": "rimraf lib",
"compile:tsc": "tsc -p .",
"compile": "npm run compile:tsc",
"lint": "tslint -c tslint.json --project . \"src/**/*.ts\"",
"test": "npm run test:unit",
"test:unit": "npx mocha --timeout 10000000 -r ts-node/register --colors --recursive \"tests/**/*.test.ts\"",
"test:watch": "npx mocha --watch --watch-extensions \".ts\" --timeout 10000000 -r ts-node/register --colors --recursive \"tests/**/*.test.ts\"",
"watch:tsc": "tsc -p . --watch",
"watch:test": "jest \"tests/*\" --env=node --coverage --watch",
"watch": "npm run watch:tsc & npm run watch:test",
"release": "npx semantic-release"
},
"devDependencies": {
"@types/chai": "4.2.5",
"@types/mocha": "5.2.7",
"@types/node": "12.12.9",
"chai": "4.2.0",
"condition-circle": "2.0.2",
"faker": "4.1.0",
"mocha": "6.2.2",
"prettier": "1.19.1",
"rimraf": "3.0.0",
"semantic-release": "15.13.31",
"ts-node": "8.5.2",
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0",
"tslint-config-standard": "9.0.0",
"typescript": "3.7.2"
},
"jest": {
"transform": {
".(ts|tsx)": "./node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts)$",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
},
"engines": {
"node": ">= 8.9.3"
},
"files": [
"lib",
"package.json",
"README.md",
"CHANGELOG.md",
"LICENCE"
],
"repository": {
"type": "git",
"url": "https://github.com/kevinoneill/wee-concurrent.git"
},
"release": {
"verifyConditions": "condition-circle"
},
"publishConfig": {
"access": "public"
}
}