-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.68 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
{
"name": "wots",
"description": "A very simple \"typeof\" detection",
"version": "0.3.2",
"main": "wots.js",
"module": "src/index.js",
"browser": "wots.min.js",
"unpkg": "wots.min.js",
"scripts": {
"build": "rollup --config rollup.config.js",
"postbuild": "drop-babel-typeof wots.js && npm run build:min",
"build:min": "uglifyjs wots.js -c -m > wots.min.js",
"release": "release-commit",
"prepack": "npm run build",
"pretest": "npm run build",
"coverage": "nyc --reporter=text-summary --reporter=html --include=src/**/*.js npm test",
"test": "mocha -u tdd --require @babel/register test/*.test.js"
},
"keywords": [
"isArray",
"isDate",
"isNaN",
"isInfinity",
"isNull",
"isUndefined",
"isObject",
"isRegExp",
"isString",
"kind",
"type",
"typeof"
],
"files": [
"src/*",
"*.js",
"!*.config.js",
"!*.test.js",
"*.md"
],
"devDependencies": {
"@babel/core": "7.14.3",
"@babel/preset-env": "7.14.4",
"@babel/register": "7.13.16",
"cz-conventional-changelog": "3.3.0",
"drop-babel-typeof": "1.0.3",
"mocha": "8.4.0",
"nyc": "15.1.0",
"release-commit": "1.1.0",
"rollup": "2.51.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-node-resolve": "5.2.0",
"uglify-es": "3.3.9"
},
"issues": "https://github.com/tvardy/wots/issues",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"author": "Grzegorz (Greg) Twardowski (https://github.com/tvardy)",
"repository": {
"type": "git",
"url": "git://github.com/tvardy/wots.git"
},
"engines": {
"node": ">10.x",
"npm": ">6.x"
},
"license": "ISC"
}