-
Notifications
You must be signed in to change notification settings - Fork 153
/
package.json
65 lines (65 loc) · 2.29 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
{
"private": true,
"name": "proposal-temporal",
"version": "1.0.0",
"description": "Provides standard objects and functions for working with dates and times.",
"engines": {
"node": ">=12.16.0"
},
"main": "polyfill/lib/index.mjs",
"devDependencies": {
"@tc39/ecma262-biblio": "=2.1.2770",
"@tc39/ecma402-biblio": "=2.1.1110",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"ecmarkup": "^20.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"mkdirp": "^3.0.1",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
},
"scripts": {
"test": "cd polyfill && npm install && npm test && npm run test-cookbook && npm run test262",
"codecov:test262": "cd polyfill && npm install && npm run codecov:test262",
"test-cookbook": "cd polyfill && npm install && npm run test-cookbook",
"test-demitasse": "cd polyfill && npm install && npm run test",
"test262": "cd polyfill && npm install && npm run test262",
"lint": "eslint . --ext js,mjs,.d.ts --max-warnings 0 --cache",
"postlint": "npm run tscheck",
"tscheck": "tsc polyfill/index.d.ts --noEmit --strict --lib ESNext",
"build:polyfill": "cd polyfill && npm install && npm run build",
"build:docs": "cd docs && npm install && npm run build",
"prebuild:spec": "mkdirp out",
"build:spec": "ecmarkup --lint-spec --strict --load-biblio @tc39/ecma262-biblio --load-biblio @tc39/ecma402-biblio spec.html out/index.html",
"format": "emu-format --write spec.html spec/*.html",
"prebuild": "mkdirp out/docs/assets",
"pretty": "eslint . --ext js,mjs,.d.ts --fix",
"build": "npm run build:polyfill && npm run build:docs && npm run build:spec",
"update": "./update_deps.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tc39/proposal-temporal.git"
},
"author": "Ujjwal Sharma <usharma@igalia.com>",
"license": "BSD-3-Clause",
"prettier": {
"printWidth": 120,
"trailingComma": "none",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"bracketSpacing": true,
"arrowParens": "always",
"overrides": [
{
"files": "polyfill/test262/**",
"options": {
"singleQuote": false
}
}
]
}
}