-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.49 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
{
"name": "@ardentia/deep-copy",
"version": "1.0.3",
"description": "A package that returns a deep copy of a given object or array",
"main": "index.js",
"module": "./es6/index.js",
"private": false,
"typings": "index.d.ts",
"scripts": {
"build:declarations": "tsc --declaration true --emitDeclarationOnly --outdir dist",
"build:module:es6": "tsc --module es6 --outdir dist/es6",
"build:module:node": "tsc --module commonjs --outdir dist/node",
"build:module:all": "npm run build:declarations && npm run build:module:es6 && npm run build:module:node",
"build": "rimraf dist && npm run build:module:all && copyfiles package.json dist && copyfiles README.md dist",
"test": "ts-node --project=tsconfig.spec.json node_modules/jasmine/bin/jasmine --config=jasmine.json"
},
"repository": {
"type": "git",
"url": "https://github.com/ardentia/deep-copy.git"
},
"keywords": [
"deep",
"copy",
"js",
"object",
"array",
"typescript",
"es6",
"library",
"microlibrary",
"tool",
"esnext",
"javascript",
"deep copy",
"ts"
],
"author": "Plamena Radneva <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ardentia/deep-copy/issues"
},
"homepage": "https://github.com/ardentia/deep-copy#readme",
"devDependencies": {
"@types/jasmine": "^3.3.16",
"copyfiles": "^2.1.1",
"jasmine": "^3.4.0",
"rimraf": "^2.6.3",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
}
}