forked from mcmath/deep-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.66 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "deep-map",
"version": "2.0.0",
"description": "Transforms nested values of complex objects",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && tsc -p tsconfig.build.json",
"test:lint": "tslint \"src/**/*.ts\"",
"test:unit": "istanbul cover -e .ts -x \"*.test.ts\" _mocha -- --opts mocha.opts",
"test:report": "npm test && open coverage/lcov-report/index.html",
"test": "npm run test:lint && npm run test:unit",
"coveralls": "cat coverage/lcov.info | coveralls"
},
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcmath/deep-map.git"
},
"keywords": [
"map",
"deep",
"recursive",
"nested",
"object",
"array",
"circular",
"json",
"primitive",
"typescript",
"typings"
],
"author": "Akim McMath <[email protected]> (http://www.mcmath.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mcmath/deep-map/issues"
},
"homepage": "https://github.com/mcmath/deep-map#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/es6-weak-map": "^1.2.0",
"@types/lodash": "^4.14.120",
"@types/mocha": "^5.2.5",
"@types/sinon": "^7.0.5",
"@types/sinon-chai": "^3.2.2",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"es6-weak-map": "^2.0.2",
"istanbul": "1.1.0-alpha.1",
"mocha": "^5.2.0",
"rimraf": "^2.6.1",
"sinon": "^7.2.3",
"sinon-chai": "^3.3.0",
"ts-node": "^8.0.2",
"tslint": "^5.1.0",
"typescript": "^3.2.4"
},
"dependencies": {
"lodash": "^4.17.11",
"tslib": "^1.6.0"
}
}