-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.14 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@idapgroup/js-object-utils",
"version": "1.1.1",
"description": "Javascript functions for transform or mutate object",
"main": "build/main/index.js",
"module": "build/module/index.js",
"typings": "build/main/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/idapgroup/js-object-utils.git"
},
"license": "MIT",
"scripts": {
"build": "rimraf build/ && run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:lint": "eslint src --ext .ts --fix",
"test": "nyc ./node_modules/.bin/_mocha 'test/**/*.spec.ts'",
"prepare": "yarn fix && yarn test && yarn build"
},
"engines": {
"node": ">=10"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.4",
"@types/chai-spies": "^1.0.3",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"chai": "^4.3.7",
"chai-dom": "^1.11.0",
"chai-spies": "^1.0.0",
"deep-equal-in-any-order": "^2.0.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^4.4.1",
"eslint-plugin-import": "^2.27.5",
"jsdom": "^21.1.0",
"jsdom-global": "^3.0.2",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.8.3",
"rimraf": "^4.1.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"prettier": {
"singleQuote": true
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"exclude": [
"**/*.spec.js"
]
},
"bugs": {
"url": "https://github.com/idapgroup/js-object-utils/issues"
},
"homepage": "https://github.com/idapgroup/js-object-utils#readme",
"keywords": [
"formData",
"object to formData",
"object to url params",
"url params",
"is object",
"clean object"
],
"author": "idapgroup",
"dependencies": {
"form-data": "^4.0.0"
}
}