-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
57 lines (57 loc) · 1.14 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
{
"name": "type-name",
"description": "Just a reasonable typeof",
"version": "2.0.2",
"author": {
"name": "Takuto Wada",
"email": "[email protected]",
"url": "https://github.com/twada"
},
"bugs": "https://github.com/twada/type-name/issues",
"contributors": [
{
"name": "azu",
"url": "https://github.com/azu"
},
{
"name": "Yosuke Furukawa",
"url": "https://github.com/yosuke-furukawa"
},
{
"name": "Athan",
"url": "https://github.com/kgryte"
},
{
"name": "Andrew Moss",
"url": "https://github.com/inversion"
}
],
"devDependencies": {
"jshint": "^2.8.0",
"mocha": "^8.0.0"
},
"directories": {
"test": "test/"
},
"files": [
"index.js",
"index.d.ts"
],
"homepage": "https://github.com/twada/type-name",
"keywords": [
"type",
"typeof"
],
"license": "MIT",
"main": "./index.js",
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/twada/type-name.git"
},
"scripts": {
"lint": "jshint index.js",
"preversion": "npm test",
"test": "npm run lint && mocha"
}
}