-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "source-map-validator",
"version": "0.0.1",
"description": "A source map validator",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc --resolveJsonModule --project ./tsconfig.json",
"start": "npm run build && node dist/index.js",
"test": "npm run build && node --test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jkup/source-map-validator.git"
},
"keywords": [
"source",
"map",
"validator"
],
"author": "Jon Kuperman",
"license": "MIT",
"bugs": {
"url": "https://github.com/jkup/source-map-validator/issues"
},
"homepage": "https://github.com/jkup/source-map-validator#readme",
"dependencies": {
"@babel/parser": "^7.23.3",
"@babel/traverse": "^7.23.3",
"tc39-proposal-scope-mapping": "^0.1.1",
"source-map": "^0.8.0-beta.0",
"vlq": "^2.0.4",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/types": "^7.23.3",
"@types/node": "^20.9.0",
"@types/yargs": "^17.0.31",
"tsm": "^2.3.0",
"typescript": "^5.2.2"
}
}