-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.75 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "typeov",
"version": "1.2.6",
"reveal": true,
"description": "👺 weak but accurate type checking that returns a string representation of input's type",
"main": "dist/typeov.js",
"preferGlobal": false,
"author": "Michael Scott Hertzberg <[email protected]> (http://hertzber.gs/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/moimikey/typeov.git"
},
"bugs": {
"url": "https://github.com/moimikey/typeov/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"homepage": "https://github.com/moimikey/typeov",
"keywords": [
"type",
"types",
"coerce",
"coercion",
"checker",
"check",
"flow",
"typing",
"typeof",
"typeov",
"detection",
"ispromise",
"isnumber",
"isinfinity",
"isnull",
"isundefined",
"isbool",
"isboolean",
"isarray",
"isobject",
"isstring",
"whatis",
"kindof",
"assert",
"is",
"what"
],
"browser": {
"fs": false
},
"scripts": {
"build": "npm-run-all -s compile",
"cleanup": "rimraf .eslintcache *.log* dist/*",
"compile": "mkdirp dist && babel src/typeov.js -o dist/typeov.js",
"lint": "standard src/**/*.js",
"prebuild": "npm-run-all -s lint test cleanup",
"prepublish": "npm-run-all -s build",
"publish-please": "publish-please",
"test:watch": "nodemon -w src --exec tap -Rspec src/typeov.spec.js",
"test": "tap src/typeov.spec.js"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"mkdirp": "^1.0.4",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"standard": "^16.0.3",
"tap": "^14.11.0"
}
}