-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.64 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
{
"name": "multipart-object",
"version": "1.2.0",
"description": "convert multipart data to nested data",
"repository": "[email protected]:remigermain/multipart-object.git",
"author": "rgermain <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/remigermain/multipart-object/issues"
},
"homepage": "https://github.com/remigermain/multipart-object#readme",
"main": "dist/index.js",
"typings": "dist/@types/index.d.ts",
"files": [
"src",
"dist",
"types"
],
"scripts": {
"build": "cross-env NODE_ENV=production npx rollup -c rollup.config.js",
"build:dev": "cross-env NODE_ENV=dev DEBUG=1 npx rollup -c rollup.config.js",
"lint": "eslint --ext \".js,.vue\" --ignore-path .gitignore src/*",
"lint:fix": "eslint --ext \".js,.vue\" --fix --ignore-path .gitignore src/*",
"clean": "rm -rf dist *.html node_modules/.cache yarn-error.log",
"fclean": "yarn clean && rm -rf node_modules",
"test": "jest"
},
"keywords": [
"multipart",
"content-type",
"multipart/form-data",
"urlencode",
"nested",
"parser"
],
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.5",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"core-js": "3",
"cross-env": "^7.0.2",
"eslint": "^8.0.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.5",
"prettier": "^2.4.1",
"rollup": "^2.58.0",
"rollup-plugin-terser": "^7.0.1",
"ts-jest": "^27.0.6",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
},
"browserslist": "> 0.25%, not dead",
"dependencies": {}
}