-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@mafalda-sfu/readonlymap",
"version": "1.0.1",
"description": "Readonly wrapper of Javascript `Map` class",
"scripts": {
"docs": "cp README.md docs/ && jsdoc2md *.js > docs/API.md",
"lint": "eslint .",
"predocs": "mkdir -p docs/",
"prepare": "husky install",
"pretest": "npm run lint",
"pretest:json": "npm run lint",
"test": "c8 --all --src lib mocha",
"test:json": "c8 --all --reporter=json-summary --src lib mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mafalda-SFU/ReadonlyMap.git"
},
"keywords": [
"Mafalda",
"readonly",
"read-only",
"read",
"only",
"Map"
],
"author": "Jesús Leganés-Combarro 'piranna' <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Mafalda-SFU/ReadonlyMap/issues"
},
"homepage": "https://github.com/Mafalda-SFU/ReadonlyMap#readme",
"devDependencies": {
"@mafalda-sfu/eslint-config": "^0.6.3",
"c8": "^8.0.1",
"chai": "^4.3.10",
"eslint": "^8.51.0",
"husky": "^8.0.3",
"jsdoc-to-markdown": "^8.0.0",
"mocha": "^10.2.0",
"mocha-chai-jest-snapshot": "^1.1.4"
},
"engines": {
"node": ">=14.0.0"
}
}