generated from tc39/template-for-proposals
-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
23 lines (23 loc) · 801 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
{
"private": true,
"name": "proposal-safe-assignment-operator",
"description": "A repository template for ECMAScript proposals.",
"scripts": {
"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"
},
"homepage": "https://github.com/arthurfiorette/proposal-safe-assignment-operator#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/arthurfiorette/proposal-safe-assignment-operator.git"
},
"license": "MIT",
"devDependencies": {
"@tc39/ecma262-biblio": "^2.1.2753",
"ecmarkup": "^19.0.0"
},
"engines": {
"node": ">= 12"
}
}