-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.42 KB
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
47
48
49
50
51
52
53
54
55
{
"author": "Ed L",
"license": "ISC",
"name": "js-generic-functions",
"version": "2.2.1",
"description": "A CLOS-inspired implementation of generic functions",
"repository": {
"type": "git",
"url": "git+https://github.com/fiddlerwoaroof/js-generic-functions.git"
},
"homepage": "https://fiddlerwoaroof.github.io/js-generic-functions/",
"main": "dist/genfuns.js",
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/plugin-transform-object-rest-spread": "^7.25.9",
"@babel/preset-env": "^8.0.5",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"eslint": "^10.0.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.3.0",
"jest": "^30.0.0",
"jest-junit": "^17.0.0",
"npm": "^12.0.2",
"prettier": "^3.0.0"
},
"files": [
"README.md",
"/dist/*.js",
"/dist/*.css",
"/dist/*.html",
"/src/*.js",
"/src/*.css",
"/src/*.html"
],
"scripts": {
"test": "jest src",
"test:watch": "jest --watch src",
"format": "prettier --write .",
"build": "babel -d dist src",
"prepublishOnly": "babel -d dist src && jest src && eslint src",
"lint": "eslint src"
},
"jest-junit": {
"outputDirectory": "./test-results/jest",
"outputName": "./results.xml"
},
"prettier": {
"trailingComma": "es5",
"bracketSameLine": true,
"arrowParens": "avoid"
}
}