-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.31 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
{
"name": "stack-trace-v8",
"version": "1.1.6",
"description": "Get v8 stack traces as a detailed array of CallSite objects.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/AbdullahDalgic/stack-trace-v8.git"
},
"files": [
"lib/**/*"
],
"keywords": [
"stack",
"trace",
"v8",
"stacktrace",
"stack-trace",
"stacktracejs",
"stack-trace-js",
"stack-trace-v8",
"detailed",
"call-site"
],
"author": "Abdullah Dalgıç <[email protected]> (http://www.abdullahdalgic.com.tr)",
"license": "MIT",
"devDependencies": {
"prettier": "^2.8.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.4"
},
"bugs": {
"url": "https://github.com/AbdullahDalgic/stack-trace-v8/issues"
},
"homepage": "https://github.com/AbdullahDalgic/stack-trace-v8#readme",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" ",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
}
}