-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.05 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
{
"author": "Refael Ackerkmann <refael@empeeric.com>",
"bundledDependencies": [
"async-listener"
],
"dependencies": {
"shimmer": "latest"
},
"description": "Deep stack traces based on AsyncListener API",
"devDependencies": {
"chai": "latest",
"istanbul": "latest",
"mocha": "latest"
},
"engineStrict": {
"node": ">= 0.10.0"
},
"engines": {
"node": "^0.11.12"
},
"jshintConfig": {
"globals": {
"after": true,
"afterEach": true,
"before": true,
"beforeEach": true,
"describe": true,
"it": true
},
"node": true,
"strict": true,
"trailing": true,
"unused": true
},
"keywords": [
"trace",
"deep-stack-trace",
"AsyncListener",
"performant",
"mocha-compatible"
],
"license": "MIT",
"main": "asynctrace.js",
"name": "asynctrace",
"repository": "Empeeric/asynctrace",
"scripts": {
"test": "mocha --require .",
"mypublish": "npm test && npm version patch && npm publish && git push --follow-tags"
},
"version": "1.2.2"
}