-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.58 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
{
"access": "public",
"name": "asap-es",
"version": "1.3.3",
"description": "a queue runner with priorities, concurrency and promises",
"main": "index",
"private": false,
"scripts": {
"clean": "rm -v $(find . -name '*.js' -o -name '*.d.ts' | grep -v node_modules/) || exit 0",
"coverage": "nyc report",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "find . -name '*.ts' -print | grep -v .d.ts | grep -v node_modules/ | xargs tslint -t verbose",
"nyc": "nyc",
"prepublishOnly": "npm run tsc",
"pretest": "npm run clean && npm run lint && npm run tsc -- --noEmit",
"test": "nyc mocha -r ts-node/register $(find . -name '*.spec.ts' | grep -v node_modules/)",
"tsc": "tsc"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.spec.*"
]
},
"repository": {
"type": "git",
"url": "https://github.com/tlaziuk/asap-es.git"
},
"keywords": [
"asap",
"async",
"asynchronous",
"concurrency",
"priority",
"promise",
"queue-runner",
"queue",
"task-queue"
],
"author": "Tomek Łaziuk <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tlaziuk/asap-es/issues"
},
"homepage": "https://github.com/tlaziuk/asap-es",
"devDependencies": {
"@types/chai": "^4.0.0",
"@types/mocha": "^5.2.0",
"@types/sinon": "^5.0.0",
"chai": "^4.0.0",
"coveralls": "^3.0.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"sinon": "^5.0.0",
"ts-node": "^7.0.0",
"tslint": "^5.8.0",
"typescript": "^3.0.0"
}
}