-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
31 lines (31 loc) · 949 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
{
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tc39/proposal-decimal.git"
},
"keywords": [
"TC39",
"Decimal",
"BigDecimal",
"Decimal128"
],
"author": "Jesse Alama <[email protected]>",
"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"
}
}