-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.07 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.07 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
{
"name": "type-comparator",
"version": "0.2.9",
"description": "Useful comparator functions written on Typescript",
"main": "build/index.js",
"typings": "build/index.d.ts",
"scripts": {
"start": "node ./build/main.js",
"test": "jest",
"test:coverage": "jest --coverage",
"build": "tsc",
"clean": "rimraf build",
"prepublish": "npm run clean && npm run build",
"tslint": "tslint src/**/*.ts",
"tslint:fix": "tslint --fix src/**/*.ts"
},
"author": {
"name": "Uladzimir Aleshka",
"email": "uladzimir.aleshka@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.4",
"jest": ">=22 <24",
"rimraf": "^2.6.3",
"ts-jest": "^23.10.5",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"typescript": "^3.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lightness/type-comparator.git"
},
"bugs": {
"url": "https://github.com/lightness/type-comparator/issues"
},
"keywords": [
"comparator",
"comparators",
"type",
"types",
"typescript"
]
}