Skip to content

Commit 93e3403

Browse files
committed
Update package metadata in preparation for publishing
In particular, change the version to 0.0.0.
1 parent 2633e5a commit 93e3403

File tree

1 file changed

+38
-9
lines changed

1 file changed

+38
-9
lines changed

polyfill/package.json

Lines changed: 38 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
{
22
"name": "tc39-temporal",
3-
"version": "1.0.0",
4-
"description": "TC39 Proposal: Temporal",
3+
"version": "0.1.0",
4+
"description": "Experimental polyfill for the TC39 Temporal proposal",
5+
"type": "commonjs",
56
"main": "index.js",
7+
"browser": "index.js",
68
"types": "index.d.ts",
79
"scripts": {
810
"coverage": "c8 report --reporter html",
@@ -14,28 +16,55 @@
1416
"codecov:test262": "COVERAGE=yes npm run test262 && codecov -F test262 -f coverage/test262.lcov",
1517
"build": "rollup -c rollup.config.js",
1618
"build-script": "rollup -c rollup-script.config.js",
17-
"prepublishOnly": "npm run build",
19+
"prepare": "npm run build",
1820
"playground": "node --experimental-modules --no-warnings --icu-data-dir node_modules/full-icu -r ./lib/initialise.js"
1921
},
2022
"repository": {
2123
"type": "git",
22-
"url": "git+https://github.com/tc39/proposal-temporal.git"
24+
"url": "git+https://github.com/tc39/proposal-temporal.git",
25+
"directory": "polyfill"
2326
},
2427
"keywords": [
25-
"TC39",
26-
"Polyfill",
28+
"Absolute",
29+
"Calendar",
2730
"Date",
28-
"Time",
2931
"DateTime",
32+
"Duration",
33+
"MonthDay",
34+
"Polyfill",
35+
"TC39",
36+
"Temporal",
37+
"Time",
38+
"Timestamp",
3039
"TimeZone",
31-
"Duration"
40+
"YearMonth"
3241
],
3342
"author": "Philipp Dunkel <[email protected]>",
43+
"contributors": [
44+
"Daniel Ehrenberg",
45+
"Jason Williams",
46+
"Justin Grant",
47+
"Maggie Johnson-Pint",
48+
"Matt Johnson-Pint",
49+
"Ms2ger",
50+
"Philip Chimento",
51+
"Philipp Dunkel",
52+
"Sasha Pierson",
53+
"Shane F. Carr",
54+
"Ujjwal Sharma"
55+
],
3456
"license": "ISC",
3557
"bugs": {
3658
"url": "https://github.com/tc39/proposal-temporal/issues"
3759
},
38-
"homepage": "https://github.com/tc39/proposal-temporal#readme",
60+
"homepage": "https://tc39.es/proposal-temporal/docs/index.html",
61+
"files": [
62+
"index.d.ts",
63+
"index.js.map",
64+
"rollup.config.js",
65+
"rollup-script.config.js",
66+
"lib/*"
67+
],
3968
"dependencies": {
4069
"big-integer": "^1.6.48",
4170
"es-abstract": "^1.17.4"

0 commit comments

Comments
 (0)