-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 6.5 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 6.5 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
81
82
83
84
85
86
87
88
89
90
{
"name": "@shadlib/awaitable",
"homepage": "https://github.com/ShadSterling/Awaitable",
"repository": "https://github.com/ShadSterling/Awaitable",
"version": "0.5.4",
"description": "An approximately minimal Promise implementation in with copious debug output",
"author": "Shad Sterling <me@shadsterling.com>",
"license": "AGPL-3.0",
"keywords": [],
"main": "build/lib/Awaitable.js",
"scripts": {
"deps": "./timeout.sh 100 npm i",
"redeps": " npm run reset && npm run deps",
"audit": "auditjs -l error -w audit-whitelist.json --prod",
"reaudit": " npm run reset && npm run deps && npm run audit",
"build": "tsc",
"dbuild": " npm run deps && npm run audit && npm run build",
"rebuild": " npm run reset && npm run deps && npm run audit && npm run build",
"lint": "tslint -p . -t verbose",
"blint": " npm run audit && npm run build && npm run lint",
"relint": " npm run reset && npm run deps && npm run audit && npm run build && npm run lint",
"test:debug": "npm run blint && mocha --reporter mocha-multi --reporter-options mocha-multi=mocha-multi.json --recursive build/test/**/*.spec.js --inspect",
"test:one": "DEBUG=Awaitable,Asyncable,AsyncablePromise,DeferredAsyncablePromise mocha --reporter mocha-multi --reporter-options mocha-multi=mocha-multi:one.json --recursive build/test/**/*.spec.js --bail",
"retest:one": "npm run reset && npm run deps && npm run audit && npm run build && npm run lint && npm run test:one",
"ctest:one": " npm run clean && npm run audit && npm run build && npm run lint && npm run test:one",
"btest:one": " npm run audit && npm run build && npm run lint && npm run test:one",
"test": " : Run tests and generate coverage reports ; echo \"Running Tests\" && ./timeout.sh 300 nyc --reporter html --reporter json mocha --cache --all --include-all-sources --reporter mocha-multi --reporter-options mocha-multi=mocha-multi.json build/test -x build/test && echo \"Tests Complete\"",
"ltest": " npm run lint && npm run test",
"btest": " npm run audit && npm run build && npm run lint && npm run test",
"dtest": " npm run deps && npm run audit && npm run build && npm run lint && npm run test",
"retest": " npm run reset && npm run deps && npm run audit && npm run build && npm run lint && npm run test",
"cover": " : Run tests and generate coverage reports ; echo \"Generating Coverage Reports\" && ./timeout.sh 300 nyc report --reporter html --reporter json && echo \"Reports Complete\"",
"tcover": " npm run test && npm run cover",
"bcover": " npm run audit && npm run build && npm run lint && npm run test && npm run cover",
"dcover": " npm run deps && npm run audit && npm run build && npm run lint && npm run test && npm run cover",
"recover": " npm run reset && npm run deps && npm run audit && npm run build && npm run lint && npm run test && npm run cover",
"doc": "typedoc src --out doc",
"bdoc": " npm run audit && npm run build && npm run lint && npm run test && npm run cover && npm run doc",
"redoc": " npm run reset && npm run deps && npm run audit && npm run build && npm run lint && npm run test && npm run cover && npm run doc",
"open": "open reports/mochawesome/mochawesome.html && open coverage/index.html && open doc/index.html",
"docopen": " npm run doc && npm run open",
"topen": " npm run test && npm run cover && npm run doc && npm run open",
"lopen": " npm run lint && npm run test && npm run cover && npm run doc && npm run open",
"bopen": " npm run audit && npm run build && npm run lint && npm run test && npm run cover && npm run doc && npm run open",
"copen": " npm run clean && npm run audit && npm run build && npm run lint && npm run test && npm run cover && npm run doc && npm run open",
"dopen": " npm run deps && npm run audit && npm run build && npm run lint && npm run test && npm run cover && npm run doc && npm run open",
"reopen": " npm run reset && npm run deps && npm run audit && npm run build && npm run lint && npm run test && npm run cover && npm run doc && npm run open",
"ready": "nyc check-coverage --branches 100 --functions 100 --lines 100 --statements 100",
"tready": " npm run test && npm run cover && npm run doc && npm run ready",
"bready": " npm run audit && npm run build && npm run lint && npm run test && npm run cover && npm run doc && npm run ready",
"dready": " npm run deps && npm run audit && npm run build && npm run lint && npm run test && npm run cover && npm run doc && npm run ready",
"reready": " npm run reset && npm run deps && npm run audit && npm run build && npm run lint && npm run test && npm run cover && npm run doc && npm run ready",
"start": "echo nothing to start - this is a library",
"restart": "npm run rebuild && npm run start",
"clean": "rm -rf build reports .nyc_output coverage doc",
"reset": "npm run clean && rm -rf node_modules"
},
"dependencies": {
"debug": "3.1.X"
},
"devDependencies": {
"@types/chai": "4.1.X",
"@types/debug": "0.0.30",
"@types/mocha": "5.2.X",
"@types/node": "9.6.X",
"@types/source-map-support": "0.4.X",
"auditjs": "3.1.X",
"chai": "4.1.X",
"mocha": "5.1.X",
"mocha-multi": "1.1.X",
"mocha-sonar-reporter": "0.1.X",
"mochawesome": "3.1.X",
"npm": "6.X.X",
"nyc": "14.1.X",
"promises-aplus-tests": "2.1.X",
"source-map-support": "0.5.X",
"tslint": "5.17.X",
"typedoc": "0.14.X",
"typescript": "3.3.X"
},
"nyc": {
"include": [
"build/lib/**/*.js"
],
"exclude": [
"build/test/**/*.spec.js",
"build/testlib/**/*.js"
]
}
}