forked from shouldjs/should.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.54 KB
/
package.json
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "should",
"description": "test framework agnostic BDD-style assertions",
"version": "11.1.2",
"author": "TJ Holowaychuk <[email protected]>, Denis Bardadym <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/shouldjs/should.js.git"
},
"homepage": "https://github.com/shouldjs/should.js",
"scripts": {
"cjs": "rollup --format=cjs --output=cjs/should.js lib/should.js",
"es6": "rollup --format=es --output=es6/should.js lib/should.js",
"build": "npm run cjs && npm run es6",
"prepublish": "npm run build && npm run browser",
"pretest": "npm run build",
"test": "mocha -R mocha-better-spec-reporter --color --check-leaks ./test/*.test.js ./test/**/*.test.js",
"zuul": "zuul -- ./test/**/*.test.js ./test/*.test.js",
"browser": "rollup -c rollup.config.js --output ./should.js"
},
"devDependencies": {
"bluebird": "^3.0.6",
"eslint": "^3.0.0",
"eslint-config-shouldjs": "^1.0.0",
"mocha": "latest",
"mocha-better-spec-reporter": "latest",
"rollup": "0.34.7",
"rollup-plugin-node-resolve": "^2.0.0",
"zuul": "latest"
},
"keywords": [
"test",
"bdd",
"assert",
"should"
],
"main": "./index.js",
"license": "MIT",
"dependencies": {
"should-equal": "^1.0.0",
"should-format": "^3.0.2",
"should-type": "^1.4.0",
"should-type-adaptors": "^1.0.1",
"should-util": "^1.0.0"
},
"files": [
"cjs/*",
"es6/*",
"as-function.js",
"index.js",
"should.js",
"LICENSE",
"*.md"
]
}