-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.98 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
{
"name": "js-deep-cloning",
"version": "1.0.0",
"description": "Javascript deep cloning, so pointers are lost.",
"main": "lib/deep-cloning.js",
"repository": "git@github.com:viktor-maksimov/js-deep-cloning.git",
"author": "viktor-maksimov",
"license": "MIT",
"private": false,
"keywords": [
"object",
"clone",
"deep",
"javascript",
"typescript",
"pointers"
],
"homepage": "https://github.com/viktor-maksimov/js-deep-cloning",
"bugs": "https://github.com/viktor-maksimov/js-deep-cloning/issues",
"contributors": [
"Andras Serfozo <subztep@gmail.com>"
],
"scripts": {
"build": "babel --presets @babel/preset-typescript src/deep-cloning.ts --extensions '.ts' -d ts-compiled-temp; babel --plugins @babel/plugin-transform-modules-umd ts-compiled-temp -d lib; rm -r ts-compiled-temp",
"check-types": "tsc",
"test": "yarn check-types; jest . --passWithNoTests",
"test:coverage": "jest . --coverage",
"lint": "eslint --ext .js,.ts .",
"lint:debug": "eslint --debug --ext .js,.ts .",
"lint:fix": "eslint --fix --ext .js,.ts ."
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.12",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.16.7",
"@babel/plugin-transform-modules-umd": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"babel-jest": "^27.4.6",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^4.1.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
}
}