package.json indentation

This commit is contained in:
Sindre Sorhus 2017-12-02 12:10:04 +01:00
parent 50e3fe88c7
commit 4ce2ee9d39

View file

@ -1,62 +1,62 @@
{ {
"name": "@sindresorhus/is", "name": "@sindresorhus/is",
"version": "0.6.0", "version": "0.6.0",
"description": "Type check values: `is.string('🦄') //=> true`", "description": "Type check values: `is.string('🦄') //=> true`",
"license": "MIT", "license": "MIT",
"repository": "sindresorhus/is", "repository": "sindresorhus/is",
"author": { "author": {
"name": "Sindre Sorhus", "name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com", "email": "sindresorhus@gmail.com",
"url": "sindresorhus.com" "url": "sindresorhus.com"
}, },
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },
"main": "dist/index.js", "main": "dist/index.js",
"engines": { "engines": {
"node": ">=4" "node": ">=4"
}, },
"scripts": { "scripts": {
"lint": "tslint --format stylish --project .", "lint": "tslint --format stylish --project .",
"build": "tsc", "build": "tsc",
"test": "npm run lint && npm run build && ava dist/tests", "test": "npm run lint && npm run build && ava dist/tests",
"prepublish": "npm run build && del dist/tests" "prepublish": "npm run build && del dist/tests"
}, },
"files": [ "files": [
"dist" "dist"
], ],
"keywords": [ "keywords": [
"type", "type",
"types", "types",
"is", "is",
"check", "check",
"checking", "checking",
"validate", "validate",
"validation", "validation",
"utility", "utility",
"util", "util",
"typeof", "typeof",
"instanceof", "instanceof",
"object", "object",
"assert", "assert",
"assertion", "assertion",
"test", "test",
"kind", "kind",
"primitive", "primitive",
"verify", "verify",
"compare" "compare"
], ],
"devDependencies": { "devDependencies": {
"@types/jsdom": "^2.0.31", "@types/jsdom": "^2.0.31",
"@types/node": "^8.0.47", "@types/node": "^8.0.47",
"@types/tempy": "^0.1.0", "@types/tempy": "^0.1.0",
"ava": "*", "ava": "*",
"del-cli": "^1.1.0", "del-cli": "^1.1.0",
"jsdom": "^9.12.0", "jsdom": "^9.12.0",
"tempy": "^0.2.1", "tempy": "^0.2.1",
"tslint": "^5.8.0", "tslint": "^5.8.0",
"tslint-xo": "^0.3.0", "tslint-xo": "^0.3.0",
"typescript": "^2.6.1" "typescript": "^2.6.1"
}, },
"types": "dist/index.d.ts" "types": "dist/index.d.ts"
} }