-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.72 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.72 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "cloudly-formdata",
"version": "0.0.8",
"description": "Parser and generator for FormData as replacement for Cloudflare Workers but with support for files.",
"author": "Simon Mika <simon@mika.se>",
"license": "MIT",
"repository": "https://github.com/utily/cloudle-formdata",
"bugs": {
"url": "https://github.com/utily/cloudle-formdata/issues"
},
"homepage": "https://github.com/utily/cloudle-formdata",
"private": false,
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
},
"jest": {
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.test.json"
}
},
"testEnvironment": "node",
"testRegex": "((\\.|/)(test|spec))(\\.|\\/.+)(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"node_modules/",
"dist/"
],
"collectCoverageFrom": [
"**/*.{ts,tsx,js,jsx}",
"!**/node_modules/**",
"!**/dist/**"
],
"preset": "ts-jest",
"testMatch": null
},
"scripts": {
"dev": "watch 'npm run build' .",
"lint": "eslint '**/*.{js,ts,tsx}'",
"fix": "eslint '**/*.{js,ts,tsx}' --fix",
"build": "tsc -p .",
"pretest": "npm run build",
"test": "jest",
"test:watch": "watch jest",
"prepare": "npm run build",
"clean": "rimraf dist node_modules coverage"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "4.12.0",
"@typescript-eslint/parser": "4.12.0",
"eslint": "^7.32.0",
"eslint-plugin-prettierx": "github:utily/eslint-plugin-prettierx#utily-20211221",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^26.6.3",
"prettierx": "github:utily/prettierx#utily-20211221",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3"
}
}