forked from ahmadnassri/node-stringify-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 880 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 880 Bytes
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
{
"version": "0.0.0-development",
"name": "stringify-clone",
"description": "Wrapper for fast object cloning using `JSON.parse` & `JSON.stringify`",
"author": "Ahmad Nassri <ahmad@ahmadnassri.com> (https://www.ahmadnassri.com/)",
"homepage": "https://github.com/ahmadnassri/stringify-clone",
"repository": {
"type": "git",
"url": "https://github.com/ahmadnassri/stringify-clone.git"
},
"license": "ISC",
"main": "lib/index.js",
"keywords": [
"stringify-clone"
],
"engines": {
"node": ">=4"
},
"files": [
"lib"
],
"bugs": {
"url": "https://github.com/ahmadnassri/stringify-clone/issues"
},
"scripts": {
"pretest": "snazzy && echint",
"test": "tap test",
"coverage": "tap test --reporter silent --coverage"
},
"devDependencies": {
"echint": "^4.0.1",
"snazzy": "^6.0.0",
"tap": "^10.0.0"
}
}