forked from tc39/proposal-signals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 823 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
{
"private": true,
"name": "proposal-signals",
"description": "A repository for the ECMAScript Signal proposal.",
"scripts": {
"example:a": "cd examples/example-a && vite --host",
"start": "npm run build-loose -- --watch",
"test": "vitest",
"build": "npm run build-loose -- --strict",
"build-loose": "ecmarkup --load-biblio @tc39/ecma262-biblio --verbose spec.emu build/index.html --lint-spec"
},
"homepage": "https://github.com/proposal-signals/proposal-signals#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/proposal-signals/proposal-signals.git"
},
"license": "MIT",
"devDependencies": {
"@tc39/ecma262-biblio": "2.1.2616",
"ecmarkup": "^17.1.1",
"vite": "^4.4.11",
"vitest": "^0.34.6"
},
"engines": {
"node": ">= 12"
}
}