-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
70 lines (70 loc) · 1.77 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
63
64
65
66
67
68
69
70
{
"name": "@bloomberg/pasta-sourcemaps",
"version": "1.6.0",
"description": "Pretty (and) Accurate Stack Trace Analysis",
"main": "./dist/src/main.js",
"types": "./dist/src/main.d.ts",
"engines": {
"node": ">=16"
},
"engineStrict": true,
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"!**/*.t.js",
"!**/*.t.d.ts"
],
"scripts": {
"build": "tsc --project ./",
"doc": "typedoc --options typedoc.json",
"test": "cross-env NODE_ENV=development ts-node node_modules/tape/bin/tape tests/**/*.t.ts",
"lint": "eslint --ext ts,js ./src",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run test"
},
"devDependencies": {
"@types/node": "^8.9.5",
"@types/tape": "^4.13.0",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"cross-env": "^6.0.3",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.2",
"tape": "^4.13.2",
"ts-node": "^8.10.1",
"typedoc": "^0.24.8"
},
"dependencies": {
"typescript": "^5.1.6",
"vlq": "^1.0.0"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"arrowParens": "always",
"printWidth": 79
},
"repository": {
"type": "git",
"url": "https://github.com/bloomberg/pasta-sourcemaps"
},
"keywords": [
"sourcemap",
"source map",
"stack trace",
"crash stack"
],
"author": "Lilit Darbinyan <[email protected]>",
"contributors": [
"Hugh Crail <[email protected]>",
"Maxwell Heiber <[email protected]>",
"Robert Palmer <[email protected]>",
"Thomas Chetwin <[email protected]>"
],
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
}
}