forked from tushardhole/deep-copy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 820 Bytes
/
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
{
"name": "esclone",
"version": "1.0.4",
"description": "Utility to deep copy JS ES6 types",
"main": "lib/index.js",
"scripts": {
"test": "npm run compile && jest test",
"compile": "rimraf lib/* && babel src -d lib",
"prepublish": "npm run compile",
"lint": "eslint --ext .js ./src"
},
"author": "Tushar Dhole",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tushardhole/deep-copy.git"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.3.0",
"eslint-config-google": "^0.9.1",
"jest": "^20.0.4",
"rimraf": "^2.6.1"
},
"dependencies": {
"babel-runtime": "^6.25.0"
}
}