-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
31 lines (31 loc) · 1013 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
28
29
30
31
{
"private": true,
"name": "proposal-array-is-template-object",
"version": "0.0.0",
"description": "",
"main": "index.js",
"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",
"test": "mocha",
"precommit": "npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tc39/proposal-array-is-template-object.git"
},
"author": "Mike Samuel",
"license": "MIT",
"bugs": {
"url": "https://github.com/tc39/proposal-array-is-template-object/issues"
},
"homepage": "https://github.com/tc39/proposal-array-is-template-object#readme",
"devDependencies": {
"@tc39/ecma262-biblio": "^2.1.2789",
"chai": "^5.1.1",
"ecmarkup": "^20.0.0",
"is-template-object": "^1.0.1",
"mocha": "^10.7.3"
}
}