-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 945 Bytes
/
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
{
"name": "typescript-object-utils",
"version": "0.4.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "Immutable object manipulation methods",
"keywords": [
"typescript",
"object",
"utility",
"immutable",
"merge",
"equals",
"merge-deep",
"deep-merge",
"shallow-equals",
"shallow-merge",
"update",
"object-reduce"
],
"scripts": {
"compile": "tsc -d",
"prepublishOnly": "npm run lint && tsc -d",
"test": "ts-node node_modules/tape/bin/tape src/*.test.ts src/**/*.test.ts",
"lint": "tslint -t verbose src/*.ts src/**/*.ts"
},
"author": "Daniel Król",
"license": "MIT",
"devDependencies": {
"@types/tape": "^4.2.28",
"tape": "^4.6.3",
"ts-node": "^8.0.0",
"tslint": "^6.1.0",
"typescript": "~3.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mleko/typescript-object-utils.git"
}
}