-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.26 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
{
"name": "chai-kefir",
"version": "2.0.5",
"description": "Chai plugin for asserting on Kefir Observables.",
"main": "dist/index.js",
"scripts": {
"build": "babel src -d dist",
"prepublishOnly": "npm test && npm run build",
"test": "npm run build && npm run test:fmt && npm run test:unit",
"test:unit": "nyc mocha",
"test:fmt": "prettier src/*.js test/*.js --write"
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kefirjs/chai-kefir.git"
},
"keywords": [
"kefir",
"browser",
"chai",
"chai-plugin"
],
"author": "James DiGioia <[email protected]> (http://jamesdigioia.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kefirjs/chai-kefir/issues"
},
"homepage": "https://github.com/kefirjs/chai-kefir#readme",
"dependencies": {
"deep-eql": "^3.0.1",
"kefir-test-utils": "^1.0.0"
},
"peerDependencies": {
"chai": "^4.0.0",
"kefir": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.0.1",
"@babel/register": "^7.0.0",
"chai": "^4.0.0",
"kefir": "^3.8.0",
"mocha": "^4.0.1",
"nyc": "^13.1.0",
"prettier": "^1.15.2"
}
}