-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.73 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
{
"name": "precise-typeof",
"version": "2.0.1",
"description": "Better 'typeof'. Detects real type of the objects like 'Array()', 'new Number(1)', 'new Boolean(true)', etc.",
"main": "index.js",
"scripts": {
"lint": "eslint *.js test/*.js",
"clean": "rimraf coverage",
"test": "nyc --reporter=json tape test/test-*.js | tap-spec",
"browser": "browserify -t browserify-istanbul test/test-*.js | obake --coverage | tap-spec",
"report": "istanbul report",
"size": "cat index.js | size-table precise-typeof",
"testall": "npm run test && npm run browser && npm run report"
},
"files": [
"index.js",
"LICENSE",
"package.json",
"README.md"
],
"pre-commit": [
"lint",
"clean",
"test",
"browser",
"report",
"size"
],
"engines": {
"node": ">= 6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexindigo/precise-typeof.git"
},
"keywords": [
"precise",
"type",
"typeof",
"kind",
"kindof",
"object",
"array",
"pojo",
"instance",
"instanceof",
"plain object"
],
"author": "Alex Indigo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexindigo/precise-typeof/issues"
},
"homepage": "https://github.com/alexindigo/precise-typeof#readme",
"devDependencies": {
"browserify": "^16.2.2",
"browserify-istanbul": "^3.0.1",
"coveralls": "^3.0.2",
"eslint": "^5.3.0",
"istanbul": "^0.4.2",
"nyc": "^12.0.2",
"obake": "^0.1.2",
"phantomjs-prebuilt": "^2.1.10",
"pre-commit": "^1.1.2",
"reamde": "^1.1.0",
"rimraf": "^2.5.2",
"size-table": "^0.2.0",
"tap-spec": "^5.0.0",
"tape": "^4.5.1"
},
"dependencies": {}
}