-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
31 lines (31 loc) · 957 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-set-methods",
"description": "New collection methods proposal for JavaScript",
"license": "MIT",
"scripts": {
"spec": "ecmarkup --assets=external spec/index.html docs/index.html",
"watch": "npx ecmarkup --watch --assets=external spec/index.html docs/index.html",
"test": "mocha -r ./set-polyfill.js -r ./map-polyfill.js test/*/*.spec.js",
"format": "emu-format --write spec/**/*.html"
},
"type": "module",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Ginden/set-methods.git"
},
"keywords": [],
"author": "Michał Wadas <[email protected]>",
"bugs": {
"url": "https://github.com/tc39/proposal-collection-methods/issues"
},
"homepage": "https://github.com/tc39/proposal-collection-methods#readme",
"dependencies": {
"chai": "^5.1.1",
"mocha": "^10.7.0"
},
"devDependencies": {
"ecmarkup": "^19.0.0"
}
}