-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
{
"name": "@jdmichaud/dwarf-2-sourcemap",
"version": "0.2.0",
"description": "A DWARF to SourceMap converter for WASM debugging in the browser",
"main": "d2sm.js",
"scripts": {
"build": "tsc",
"lint": "eslint --config .eslintrc.js 'src/**/*.ts' --ignore-pattern 'src/**/*.spec.ts'",
"minify": "uglifyjs dist/d2sm.js -o dist/d2sm.min.js --source-map",
"all": "npm run lint && npm run build && npm run minify",
"ppublish": "npm run all && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jdmichaud/dwarf-2-sourcemap.git"
},
"keywords": [
"wasm",
"dwarf",
"sourcemap"
],
"author": "jdmichaud",
"license": "MIT",
"bugs": {
"url": "https://github.com/jdmichaud/dwarf-2-sourcemap/issues"
},
"homepage": "https://github.com/jdmichaud/dwarf-2-sourcemap#readme",
"files": [
"dist/d2sm.js",
"dist/d2sm.js.map",
"dist/d2sm.min.js",
"dist/d2sm.min.js.map"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"typescript": "^4.8.2",
"uglify-js": "^3.17.0"
}
}