-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.57 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
54
55
56
57
58
59
60
{
"name": "@bothrs/util",
"version": "3.1.0",
"description": "Common helper functions",
"license": "MIT",
"scripts": {
"dev": "yarn clean && tsc -w --noEmit",
"clean": "find . -maxdepth 1 -type f \\( -name \\*.mjs -or -name \\*.js -or -name \\*.d.ts -or -name \\*.jsx \\) ! -name jest.config.js -delete; date",
"build": "yarn clean && tsc -d && cp src/mjs/*.mjs .",
"docs": "typedoc --out docs src --includeVersion",
"test": "jest",
"fix": "yarn clean && prettier --write -l src",
"lint": "yarn clean && prettier -l src"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "~27.5.2",
"@types/node-fetch": "2",
"documentation": "^13.2.5",
"jest": "^27.5.1",
"node-fetch": "^2.6.1",
"prettier": "2",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.1.5",
"ts-node": "^10.8.0",
"tslib": "^2.3.1",
"typedoc": "^0.21.4",
"typescript": "~4.6.4"
},
"dependencies": {},
"peerDependencies": {
"node-fetch": "^2.6.1"
},
"engines": {
"node": ">=8"
},
"files": [
"*.js",
"*.mjs",
"*.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bothrs/util.git"
},
"contributors": [
"Thomas Ghysels <[email protected]> (https://thomasg.be)"
],
"bugs": {
"url": "https://github.com/bothrs/util/issues"
},
"prettier": {
"arrowParens": "avoid",
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"homepage": "https://github.com/bothrs/util#readme"
}