1 | {
|
2 | "name": "should",
|
3 | "description": "test framework agnostic BDD-style assertions",
|
4 | "version": "11.2.1",
|
5 | "author": "TJ Holowaychuk <tj@vision-media.ca>, Denis Bardadym <bardadymchik@gmail.com>",
|
6 | "repository": {
|
7 | "type": "git",
|
8 | "url": "https://github.com/shouldjs/should.js.git"
|
9 | },
|
10 | "homepage": "https://github.com/shouldjs/should.js",
|
11 | "scripts": {
|
12 | "cjs": "rollup --format=cjs --output=cjs/should.js lib/should.js",
|
13 | "es6": "rollup --format=es --output=es6/should.js lib/should.js",
|
14 | "build": "npm run cjs && npm run es6",
|
15 | "prepublish": "npm run build && npm run browser",
|
16 | "pretest": "npm run build",
|
17 | "test": "mocha -R mocha-better-spec-reporter --color --check-leaks ./test/*.test.js ./test/**/*.test.js",
|
18 | "zuul": "zuul -- ./test/**/*.test.js ./test/*.test.js",
|
19 | "browser": "rollup -c rollup.config.js --output ./should.js"
|
20 | },
|
21 | "devDependencies": {
|
22 | "bluebird": "^3.0.6",
|
23 | "eslint": "^3.0.0",
|
24 | "eslint-config-shouldjs": "^1.0.0",
|
25 | "mocha": "latest",
|
26 | "mocha-better-spec-reporter": "latest",
|
27 | "rollup": "^0.41.4",
|
28 | "rollup-plugin-node-resolve": "^2.0.0",
|
29 | "zuul": "latest"
|
30 | },
|
31 | "keywords": [
|
32 | "test",
|
33 | "bdd",
|
34 | "assert",
|
35 | "should"
|
36 | ],
|
37 | "main": "./index.js",
|
38 | "license": "MIT",
|
39 | "dependencies": {
|
40 | "should-equal": "^1.0.0",
|
41 | "should-format": "^3.0.2",
|
42 | "should-type": "^1.4.0",
|
43 | "should-type-adaptors": "^1.0.1",
|
44 | "should-util": "^1.0.0"
|
45 | },
|
46 | "files": [
|
47 | "cjs/*",
|
48 | "es6/*",
|
49 | "as-function.js",
|
50 | "index.js",
|
51 | "should.js",
|
52 | "LICENSE",
|
53 | "*.md"
|
54 | ]
|
55 | }
|