-
Notifications
You must be signed in to change notification settings - Fork 157
/
package.json
94 lines (94 loc) · 2.72 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "proposal-temporal",
"version": "0.9.0",
"description": "Experimental polyfill for the TC39 Temporal proposal",
"type": "commonjs",
"main": "dist/index.js",
"browser": "dist/index.umd.js",
"types": "index.d.ts",
"scripts": {
"coverage": "c8 report --reporter html",
"test": "node --no-warnings --experimental-modules --icu-data-dir node_modules/full-icu --loader ./test/resolve.source.mjs ./test/all.mjs",
"test-cookbook": "TEST=all npm run test-cookbook-one && TEST=stockExchangeTimeZone npm run test-cookbook-one",
"test-cookbook-one": "node --no-warnings --experimental-modules --icu-data-dir node_modules/full-icu --loader ./test/resolve.cookbook.mjs ../docs/cookbook/$TEST.mjs",
"test262": "./ci_test.sh",
"codecov:tests": "./ci_codecov_test.sh",
"codecov:test262": "./ci_codecov_test262.sh",
"build": "rollup -c rollup.config.js",
"build262": "TEST262=1 rollup -c rollup.config.js",
"prepublishOnly": "npm run build",
"playground": "node --experimental-modules --no-warnings --icu-data-dir node_modules/full-icu -r ./lib/init.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tc39/proposal-temporal.git",
"directory": "polyfill"
},
"keywords": [
"Calendar",
"Date",
"DateTime",
"Duration",
"Instant",
"MonthDay",
"Polyfill",
"TC39",
"Temporal",
"Time",
"Timestamp",
"TimeZone",
"YearMonth"
],
"author": "Philipp Dunkel <pip@pipobscure.com>",
"contributors": [
"Daniel Ehrenberg",
"Jason Williams",
"Justin Grant",
"Maggie Johnson-Pint",
"Matt Johnson-Pint",
"Ms2ger",
"Philip Chimento",
"Philipp Dunkel",
"Sasha Pierson",
"Shane F. Carr",
"Ujjwal Sharma"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/tc39/proposal-temporal/issues"
},
"homepage": "https://tc39.es/proposal-temporal/docs/index.html",
"files": [
"index.d.ts",
"dist",
"lib"
],
"dependencies": {
"big-integer": "^1.6.48",
"es-abstract": "^1.18.4"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@pipobscure/demitasse": "^1.0.10",
"@pipobscure/demitasse-pretty": "^1.0.10",
"@pipobscure/demitasse-run": "^1.0.10",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.3.3",
"c8": "^7.3.1",
"codecov": "^3.7.2",
"core-js": "^3.6.4",
"full-icu": "^1.3.0",
"nyc": "^15.1.0",
"rollup": "^2.28.2",
"rollup-plugin-terser": "^7.0.2",
"test262-harness": "^9.0.0",
"timezones.json": "^1.5.2",
"uuid": "^8.3.0"
},
"engines": {
"node": ">=12"
}
}