This repository has been archived by the owner on Jun 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
80 lines (80 loc) · 2.18 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
79
80
{
"name": "fast-clone",
"version": "1.5.13",
"description": "Extremely fast deep cloning function",
"main": "./index.js",
"private": true,
"scripts": {
"benchmark": "ts-node --files ./support/benchmark",
"prebuild": "npm run clean",
"build": "tsc -p ./tsconfig.main.json && ts-node --project ./tsconfig.package.json --files ./support/package.ts",
"check": "npm run build && npm test",
"clean": "rimraf ./dist",
"commit": "commit",
"prerelease": "npm run build",
"release": "git checkout master && git pull origin master && standard-version && ts-node ./support/updatePackageVersion.ts",
"ship": "git push --follow-tags origin master && cd ./dist && npm publish",
"pretest": "npm run build",
"test": "jest"
},
"keywords": [
"clone",
"copy",
"deep",
"object",
"date",
"fast",
"fastest",
"quick",
"efficient"
],
"author": "Ben Daniel <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/codeandcats/fast-clone.git"
},
"bugs": {
"url": "https://github.com/codeandcats/fast-clone/issues"
},
"homepage": "https://github.com/codeandcats/fast-clone#readme",
"types": "index.d.ts",
"husky": {
"hooks": {
"pre-commit": "npm run build",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@commitlint/prompt-cli": "^7.2.1",
"@types/faker": "4.1.5",
"@types/filesize": "4.1.0",
"@types/jest": "24.0.11",
"@types/node": "11.11.0",
"@types/numeral": "0.0.25",
"@types/pad": "1.0.2",
"angular": "1.7.7",
"benv": "3.3.0",
"chalk": "2.4.2",
"clone": "2.1.2",
"coveralls": "^3.0.2",
"deepclone": "1.0.2",
"deepcopy": "2.0.0",
"faker": "4.1.0",
"filesize": "4.1.2",
"get-root-path": "2.0.2",
"husky": "^1.1.3",
"jest": "24.3.1",
"lodash": "4.17.11",
"numeral": "2.0.6",
"pad": "2.2.2",
"rimraf": "2.6.3",
"snapshot": "0.0.0",
"standard-version": "^5.0.0",
"ts-jest": "24.0.0",
"ts-node": "8.0.3",
"typescript": "3.3.3333"
}
}