This repository was archived by the owner on Jun 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.03 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.03 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
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
{
"name": "deep.clone",
"version": "2.1.2",
"description": "Simple package to deeply clone any objects with nested objects",
"keywords": [
"clone",
"clone deep",
"clone-deep",
"clone.deep",
"deep",
"deep clone",
"deep-clone",
"deep.clone",
"motss"
],
"homepage": "https://github.com/motss/deep.clone",
"repository": {
"type": "git",
"url": "git@github.com:motss/deep.clone.git"
},
"license": "MIT",
"author": "Rong Sen Ng <wes.ngrongsen@gmail.com> (https://github.com/motss)",
"files": [
"dist/*.*js.map",
"dist/*.*js",
"dist/*.d.ts.map",
"dist/*.d.ts"
],
"sideEffects": false,
"main": "dist/index",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && cross-env NODE_ENV=production npm run rollup",
"build:test": "npm run lint && npm run ts -- -p tsconfig.test.json && cross-env NODE_ENV=test npm run rollup",
"clean": "rm -rf dist/",
"lint": "tslint --project tsconfig.json --config tslint.prod.json --format stylish",
"lint:debug": "tslint --project tsconfig.json --config tslint.json --format stylish",
"prepublishOnly": "npm run lint && npm run build",
"rollup": "rollup -c ./rollup.config.js",
"test": "npm run build:test && jest --config ./.jestrc.json",
"ts": "npm run clean && tsc",
"watch": "npm run ts -- --watch"
},
"dependencies": {
"lodash-es": "^4.17.11"
},
"devDependencies": {
"@reallyland/tslint-config": "^1.0.0",
"@types/jest": "^24.0.11",
"@types/lodash-es": "^4.17.3",
"@types/node": "^11.13.8",
"cross-env": "^5.2.0",
"jest": "^24.7.1",
"rollup": "^1.10.1",
"rollup-plugin-filesize": "^6.0.1",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-tslint": "^0.2.2",
"rollup-plugin-typescript2": "^0.21.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
},
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.5.1"
},
"publishConfig": {
"access": "public"
}
}