forked from maimArt/typescript-immutable-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.21 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": "typescript-immutable-helper",
"version": "0.6.3",
"description": "Helpers for handling immutable objects with typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register src/tests/*spec.ts",
"prepublishOnly": "npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maimArt/typescript-immutable-helper.git"
},
"keywords": [
"typescript",
"typesafe",
"immutable",
"stateless",
"functional",
"data",
"datastructure",
"redux",
"state",
"clone",
"deep",
"copy",
"assign"
],
"author": "Martin Maier",
"license": "MIT",
"bugs": {
"url": "https://github.com/maimArt/typescript-immutable-helper/issues"
},
"homepage": "https://github.com/maimArt/typescript-immutable-helper#readme",
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^2.2.48",
"@types/node": "^8.10.19",
"chai": "^4.1.0",
"mocha": "^5.2.0",
"ts-node": "^3.3.0",
"typescript": "^2.9.2"
}
}