forked from anatoliygatt/deep-freeze-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.95 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.95 KB
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
{
"name": "deep-freeze-node",
"version": "1.1.3",
"description": "Recursively Object.freeze() objects.",
"keywords": [
"deep",
"recursive",
"object",
"array",
"properties",
"freeze",
"node"
],
"homepage": "https://github.com/AnatoliyGatt/deep-freeze-node",
"bugs": {
"url": "https://github.com/AnatoliyGatt/deep-freeze-node/issues",
"email": "anatoliy.gatt@aol.com"
},
"license": "MIT",
"author": {
"name": "Anatoliy Gatt",
"email": "anatoliy.gatt@aol.com",
"url": "http://anatoliygatt.com"
},
"contributors": [],
"files": [
"LICENSE",
"CHANGELOG.md",
"README.md",
"index.js",
"lib/"
],
"main": "index.js",
"bin": {},
"man": {},
"directories": {},
"repository": {
"type": "git",
"url": "https://github.com/AnatoliyGatt/deep-freeze-node.git"
},
"scripts": {
"test": "mocha --colors --sort --bail --reporter spec --check-leaks --full-trace --no-timeouts --recursive ./test/*.js",
"test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --colors --sort --bail --reporter spec --check-leaks --full-trace --no-timeouts --recursive ./test/*.js",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --colors --sort --bail --reporter dot --check-leaks --full-trace --no-timeouts --recursive ./test/*.js",
"test-tap": "mocha --colors --sort --bail --reporter tap --check-leaks --full-trace --no-timeouts --recursive ./test/*.js"
},
"config": {},
"dependencies": {},
"devDependencies": {
"codeclimate-test-reporter": "^0.5.0",
"istanbul": "^0.4.5",
"mocha": "^3.5.3"
},
"peerDependencies": {},
"bundledDependencies": [],
"optionalDependencies": {},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"ia32",
"arm",
"arm64",
"mips"
],
"preferGlobal": false,
"private": false,
"publishConfig": {}
}