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
| {
| "name": "should-type",
| "version": "1.4.0",
| "description": "Simple module to get instance type. Like a bit more advanced version of typeof",
| "main": "cjs/should-type.js",
| "jsnext:main": "es6/should-type.js",
| "repository": {
| "type": "git",
| "url": "https://github.com/shouldjs/type.git"
| },
| "keywords": [
| "should",
| "type"
| ],
| "files": [
| "cjs/*",
| "es6/*",
| "README.md",
| "LICENSE"
| ],
| "scripts": {
| "cjs": "rollup --format=cjs --output=cjs/should-type.js index.js",
| "es6": "rollup --format=es --output=es6/should-type.js index.js",
| "build": "npm run cjs && npm run es6",
| "prepublish": "npm run build"
| },
| "author": "Denis Bardadym <bardadymchik@gmail.com>",
| "license": "MIT",
| "bugs": {
| "url": "https://github.com/shouldjs/type/issues"
| },
| "homepage": "https://github.com/shouldjs/type",
| "devDependencies": {
| "eslint": "^3.0.0",
| "eslint-config-shouldjs": "^1.0.2",
| "rollup": "^0.34.7"
| }
| }
|
|