-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.22 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.22 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
{
"private": true,
"name": "proposal-first-class-protocols",
"version": "0.0.0",
"description": "ECMAScript First-Class Protocols Proposal",
"directories": {
"example": "examples"
},
"scripts": {
"test": "for f in examples/*; do echo \"Compiling $f\"; mkdir -p build; echo \"'lang sweet.js'; import { class, protocol, implements } from 'sweet-interfaces';\" >build/build.js; cat \"$f\" >>build/build.js; sjs build/build.js >/dev/null || exit $?; done",
"start": "npm run build-loose -- --watch",
"build": "npm run build-loose -- --strict",
"build-loose": "node -e 'fs.mkdirSync(\"build\", { recursive: true })' && ecmarkup --load-biblio @tc39/ecma262-biblio --verbose spec.emu build/index.html --lint-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tc39/proposal-first-class-protocols.git"
},
"license": "MIT",
"homepage": "https://github.com/tc39/proposal-first-class-protocols#readme",
"devDependencies": {
"@sweet-js/cli": "3.0.13",
"sweet-interfaces": "*",
"@tc39/ecma262-biblio": "^2.1.2895",
"ecmarkup": "^21.3.0",
"jsdom": "^26.1.0",
"parse5-html-rewriting-stream": "^7.1.0",
"tmp": "^0.2.3"
},
"engines": {
"node": ">= 18"
}
}