-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 729 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 729 Bytes
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
{
"name": "micro-typeof",
"version": "0.1.0",
"description": "Get the exact type of a value",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"test": "ts-node node_modules/tape/bin/tape __test__/**/*.ts | tap-spec",
"build": "tsc",
"prepublish": "npm test && npm run build"
},
"files": [
"build",
"readme.md"
],
"keywords": [
"typeof",
"type-of"
],
"author": "Ademola Adegbuyi <ooade96@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.6.2",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.5",
"@types/tape": "^4.2.34",
"tap-spec": "^5.0.0",
"tape": "^4.13.2",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
}
}