-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.35 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.35 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
{
"name": "deep-map",
"version": "1.1.0",
"description": "Recursively transforms primitive values of a JSON-like object",
"main": "index.js",
"files": [
"index.js",
"README.md",
"LICENSE.txt"
],
"scripts": {
"test": "npm run jshint && npm run jscs && npm run mocha",
"jshint": "jshint . --exclude-path .gitignore",
"jscs": "jscs .",
"mocha": "istanbul cover _mocha",
"coverage": "npm test && open ./coverage/lcov-report/index.html",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"clean": "rm -rf ./node_modules ./coverage",
"preversion": "npm test"
},
"engines": {
"node": ">=0.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akim-mcmath/deep-map.git"
},
"keywords": [
"map",
"deep",
"recursive",
"nested",
"object",
"array",
"json",
"primitive"
],
"author": "Akim McMath <akim.elijah.mcmath@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/akim-mcmath/deep-map/issues"
},
"homepage": "https://github.com/akim-mcmath/deep-map#readme",
"dependencies": {},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.6",
"istanbul": "^0.4.2",
"jscs": "^2.9.0",
"jshint": "^2.9.1",
"lodash": "^4.3.0",
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0"
}
}