-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.38 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
49
50
51
52
53
{
"name": "@pangenerator/utils",
"version": "3.0.1",
"description": "A collection of functions and classes for creative coding and interactive projects",
"main": "utils.js",
"scripts": {
"rollup": "rollup --config src/rollup.config.mjs",
"docs": "jsdoc2md -c jsdoc.conf --template src/README.hbs --files src/**/*.mjs --separators --param-list-format list --property-list-format list --helper src/year.js> README.md",
"build": "npm run rollup && npm run docs",
"postversion": "npm run build",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --collectCoverage"
},
"engines": {
"npm": ">=7.0.0 <=20.0.0",
"node": ">=16.0.0 <30.0.0"
},
"files": [
"utils.js"
],
"banner": "'/*!*/'",
"homepage": "https://github.com/panGenerator/utils#readme",
"private": false,
"keywords": [
"util",
"tool",
"snippet"
],
"author": "panGenerator",
"repository": {
"type": "git",
"url": "git+https://github.com/panGenerator/utils.git"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"jest": "^29.7.0",
"jsdoc-to-markdown": "^8.0.3",
"rollup": "^4.20.0"
},
"jest": {
"testMatch": [
"**/?(*.)test.?js"
],
"transform": {}
},
"prettier": {
"bracketSameLine": true,
"printWidth": 80,
"semi": false,
"singleQuote": true,
"tabWidth": 2
}
}