-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.05 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
{
"name": "type-brandy",
"version": "1.0.2",
"description": "Nominal typing for TypeScript",
"keywords": [
"typescript",
"ts",
"flow",
"typings",
"brand",
"branding",
"flavor",
"flavoring",
"nominal"
],
"author": "Aleksey Kuznetsov <kyznecov.alexey@gmail.com>",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"license": "MIT",
"homepage": "https://github.com/kuzalekon/type-brandy#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kuzalekon/type-brandy.git"
},
"bugs": {
"url": "https://github.com/kuzalekon/type-brandy/issues",
"email": "kyznecov.alexey@gmail.com"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"format": "prettier --ignore-unknown --write ./src",
"test": "jest",
"prepublish": "npm run test && npm run clean && npm run build"
},
"devDependencies": {
"@types/jest": "~27.4.0",
"jest": "~27.4.7",
"prettier": "~2.5.1",
"rimraf": "~3.0.2",
"ts-jest": "~27.1.3",
"typescript": "~4.5.5"
}
}