casting
Version:
Tiny type casting library for node.js and the browser.
45 lines (44 loc) • 1.37 kB
JSON
{
"name": "casting",
"version": "0.0.2",
"description": "Tiny type casting library for node.js and the browser.",
"main": "lib/index.js",
"scripts": {
"all": "npm test; npm run coverage; npm run minify",
"prepublish": "npm test && npm run minify",
"pretest": "npm run jshint",
"jshint": "./node_modules/.bin/jshint ./lib",
"test": "./node_modules/mocha/bin/mocha",
"watch": "./node_modules/mocha/bin/mocha --watch",
"coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha",
"browserify": "./node_modules/.bin/browserify -s Casting -o ./dist/casting.js ./lib/index.js",
"minify": "npm run browserify; ./node_modules/.bin/uglifyjs -o ./dist/casting.min.js ./dist/casting.js"
},
"repository": {
"type": "git",
"url": "https://github.com/codemix/casting"
},
"keywords": [
"types",
"type cast",
"typecasting",
"cast",
"casting"
],
"author": "Charles Pick <charles@codemix.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/codemix/casting/issues"
},
"homepage": "https://github.com/codemix/casting",
"devDependencies": {
"expect.js": "~0.3.1",
"should": "~3.3.1",
"mocha": "~1.18.2",
"istanbul": "~0.2.10",
"jshint": "~2.5.1",
"uglify-js": "~2.4.13",
"browserify": "~4.1.6"
},
"dependencies": {}
}