UNPKG

expect

Version:
51 lines (50 loc) 1.43 kB
{ "name": "expect", "version": "1.11.0", "description": "Write better assertions", "main": "lib/index", "dependencies": { "deep-equal": "^1.0.1", "is-regexp": "^1.0.0", "object-inspect": "^1.0.2" }, "devDependencies": { "babel": "^5.4.7", "babel-core": "^5.4.7", "babel-eslint": "^4.1.1", "babel-loader": "^5.3.2", "eslint": "^1.3.1", "karma": "^0.12.28", "karma-chrome-launcher": "^0.1.7", "karma-cli": "0.0.4", "karma-mocha": "^0.1.10", "karma-sourcemap-loader": "^0.3.2", "karma-webpack": "^1.3.1", "mocha": "^2.0.1", "webpack": "^1.4.13" }, "scripts": { "build": "babel ./modules -d lib --stage 0 --loose all --ignore '__tests__'", "build-umd": "NODE_ENV=production webpack modules/index.js umd/expect.js", "build-min": "NODE_ENV=production webpack -p modules/index.js umd/expect.min.js", "lint": "eslint modules", "test": "npm run lint && mocha --compilers js:babel/register --reporter spec 'modules/**/__tests__/*-test.js'", "test-browser": "npm run lint && karma start" }, "keywords": [ "expect", "assert", "test", "spec" ], "author": "Michael Jackson", "license": "MIT", "repository": { "type": "git", "url": "git://github.com/mjackson/expect.git" }, "bugs": { "url": "https://github.com/mjackson/expect/issues" }, "homepage": "https://github.com/mjackson/expect" }