-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.29 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.29 KB
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": "proposal-decimal",
"version": "1.0.0",
"description": "Representing base-10 decimal numbers",
"scripts": {
"start": "npm run build-loose -- --watch",
"build": "npm run build-loose -- --strict",
"build-loose": "ecmarkup --verbose --lint-spec --load-biblio @tc39/ecma262-biblio --load-biblio @tc39/ecma402-biblio spec.emu index.html",
"format": "prettier . --write",
"lint": "prettier . --check",
"docs:test": "node docs/testExamples.mjs",
"docs:build": "npm run docs:test && node docs/buildDocs.js",
"docs:build:force": "node docs/buildDocs.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tc39/proposal-decimal.git"
},
"keywords": [
"TC39",
"Decimal",
"BigDecimal",
"Decimal128"
],
"author": "Jesse Alama <jesse@igalia.com>",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/tc39/proposal-decimal/issues"
},
"homepage": "https://tc39.es/proposal-decimal/",
"devDependencies": {
"@tc39/ecma262-biblio": "2.1",
"@tc39/ecma402-biblio": "^2.1.1050",
"ecmarkup": "github:jessealama/ecmarkup#permit-decimal-subscript-D",
"marked": "^15.0.12",
"mkdirp": "^3.0.1",
"prettier": "^3.6.2",
"prismjs": "^1.30.0",
"proposal-decimal": "^20250613.0.0"
}
}