-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 906 Bytes
/
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
{
"name": "testable-meteor",
"version": "1.0.0",
"description": "Set of tools and mocks to make your Meteor app Testable without Meteor context",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src/ -d dist/",
"build:watch": "npm run build -- --watch"
},
"keywords": [
"meteor",
"tests",
"integration",
"jest",
"react",
"blaze",
"minimongo"
],
"author": "Lukasz Gandecki",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015-without-strict": "0.0.4",
"blaze-renderer": "^0.8.0",
"js-beautify": "^1.7.5",
"underscore": "^1.8.3"
},
"peerDependencies": {
"blaze-renderer": "^0.8.0"
},
"dependencies": {
"fibers": "^2.0.2",
"nedb-promise": "^2.0.1"
}
}