-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
77 lines (77 loc) · 2.21 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
{
"name": "deepcopy",
"description": "deep copy data",
"version": "2.1.0",
"author": "sasa+1 <[email protected]>",
"browser": "./dist/umd/deepcopy.js",
"contributors": [
"kjirou <[email protected]>",
"Pr0methean"
],
"dependencies": {
"type-detect": "^4.0.8"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-typescript": "^8.2.0",
"@types/mocha": "^8.0.1",
"@types/node": "^13.13.2",
"@types/type-detect": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"@wessberg/rollup-plugin-ts": "^1.3.8",
"benchmark": "^2.1.4",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-node": "^11.1.0",
"espower-typescript": "^10.0.0",
"husky": "^4.2.5",
"karma": "^6.1.1",
"karma-chrome-launcher": "^3.1.0",
"karma-espower-preprocessor": "^1.2.0",
"karma-mocha": "^2.0.1",
"karma-power-assert": "^1.0.0",
"karma-rollup-preprocessor": "^7.0.6",
"lint-staged": "^10.2.11",
"mocha": "^8.1.1",
"npm-run-all": "^4.1.5",
"power-assert": "^1.6.1",
"prettier": "^2.2.1",
"rollup": "^2.40.0",
"rollup-plugin-terser": "^7.0.0",
"typescript": "^4.2.3"
},
"engines": {
"node": ">=12"
},
"files": [
"dist/**/*"
],
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/sasaplus1/deepcopy.js.git"
},
"scripts": {
"benchmark": "node ./benchmark/index.js",
"build": "run-p -l build:*",
"build:cjs": "tsc",
"build:esm": "rollup -c --environment build:esm",
"build:umd": "rollup -c --environment build:umd",
"check-types": "tsc --noEmit",
"fix": "run-s fix:*",
"fix:eslint": "eslint --fix --ext .js,.ts .",
"fix:prettier": "prettier --write '**/*.+(js|ts)'",
"fixpack": "npx fixpack",
"lint": "run-s lint:*",
"lint:eslint": "eslint --cache --ext .js,.ts .",
"lint:prettier": "prettier --check '**/*.+(js|ts)'",
"test": "mocha"
},
"sideEffects": false,
"types": "./dist/cjs/index.d.ts"
}