-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.13 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.13 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
{
"name": "@lllllxt/deep-clone",
"version": "1.0.2",
"description": "深拷贝, 支持基本数据类型(string, number, boolean, null, undefined, symbol), 以及(Date, RegExp, Array, Object, Map, Set)",
"main": "deep-clone.min.js",
"scripts": {
"start": "npm run build && npm run uglify && npm run test",
"build": "rollup -c build/rollup.config.js -o deep-clone.js",
"uglify": "rollup -c build/rollup.config.js -o deep-clone.min.js --uglify",
"test": "jest --collectCoverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lllllxt/DeepClone.git"
},
"keywords": [
"clone",
"deep",
"clone"
],
"author": "lllllxt",
"license": "MIT",
"bugs": {
"url": "https://github.com/lllllxt/DeepClone/issues"
},
"homepage": "https://github.com/lllllxt/DeepClone#readme",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/preset-env": "^7.8.6",
"jest": "^25.4.0",
"rollup": "^1.32.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-uglify": "^6.0.4"
},
"files": [
"src/",
"deep-clone.js",
"deep-clone.min.js"
]
}