-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.28 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
{
"name": "omniclone",
"version": "0.8.0",
"description": "deep cloning function for js objects",
"main": "dist/main.js",
"scripts": {
"test": "jest --watchAll --coverage",
"dev": "webpack --mode development src/omniclone.js",
"build": "webpack --mode production src/omniclone.js",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jfet97/omniclone.git"
},
"files": [
"dist"
],
"keywords": [
"javascript",
"clone",
"cloning",
"object",
"objetcs",
"circular",
"reference",
"references"
],
"author": "Andrea Simone Costa <andrysimo1997@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jfet97/omniclone/issues"
},
"homepage": "https://github.com/jfet97/omniclone#readme",
"devDependencies": {
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.11.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^23.6.0",
"prettier": "^1.15.3",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
}
}
}