-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.26 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
47
48
{
"author": "Ed L",
"license": "ISC",
"name": "js-generic-functions",
"version": "2.0.10",
"description": "A CLOS-inspired implementation of generic functions",
"repository": "https://github.com/fiddlerwoaroof/js-generic-functions",
"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-proposal-object-rest-spread": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@types/jest": "^29.4.0",
"eslint": "^8.4.1",
"eslint-plugin-react": "^7.20.3",
"jest": "^29.5.0",
"jest-junit": "^16.0.0",
"npm": "^10.0.0",
"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"
},
"jest-junit": {
"outputDirectory": "./test-results/jest",
"outputName": "./results.xml"
},
"prettier": {
"trailingComma": "es5",
"bracketSameLine": true,
"arrowParens": "avoid"
}
}