-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
55 lines (55 loc) · 1.43 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": "assume",
"version": "2.3.0",
"description": "Expect-like assertions that works seamlessly in node and browsers",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"coverage": "istanbul cover ./node_modules/.bin/_mocha -- --reporter spec --ui bdd ./test/*.test.js",
"prepublishOnly": "mkdir -p dist && browserify index.js -o dist/assume.js --standalone assume",
"node": "node --allow-natives-syntax --harmony ./node_modules/mocha/bin/_mocha ./test/*.test.js",
"test": "mocha ./test/*.test.js",
"test-travis": "npm run node && istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --ui bdd ./test/*.test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/bigpipe/assume.git"
},
"bugs": {
"url": "https://github.com/bigpipe/assume/issues"
},
"keywords": [
"assert",
"assertion",
"asserts",
"assume",
"bdd",
"expect",
"expect.js",
"should",
"shouldjs",
"spec",
"tdd",
"test",
"testing",
"tests",
"unit testing",
"unit"
],
"author": "Arnout Kazemier",
"license": "MIT",
"devDependencies": {
"browserify": "14.x.x",
"istanbul": "0.4.x",
"mocha": "3.x.x",
"pre-commit": "1.x.x"
},
"dependencies": {
"deep-eql": "^3.0.1",
"fn.name": "^1.0.1",
"is-buffer": "^2.0.0",
"object-inspect": "^1.5.0",
"propget": "^1.1.0",
"pruddy-error": "^2.0.2"
}
}