-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
40 lines (40 loc) · 989 Bytes
/
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
{
"name": "ecma-proposal-error-stacks",
"version": "0.0.0",
"description": "ECMAScript spec proposal for Error Stacks",
"private": true,
"scripts": {
"start": "npm run build-loose -- --watch",
"build": "npm run build-loose -- --strict",
"build-loose": "ecmarkup --load-biblio @tc39/ecma262-biblio --verbose spec.emu index.html --lint-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ljharb/proposal-error-stacks.git"
},
"keywords": [
"error",
"errors",
"stack",
"getStack",
"System.getStack",
"stack trace",
"ECMAScript",
"ESNext",
"spec",
"proposal"
],
"author": "Jordan Harband <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ljharb/proposal-promise-error-stacks/issues"
},
"homepage": "https://github.com/ljharb/proposal-promise-error-stacks#readme",
"dependencies": {
"in-publish": "^2.0.1"
},
"devDependencies": {
"@tc39/ecma262-biblio": "^2.1.2682",
"ecmarkup": "^18.1.3"
}
}