-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
56 lines (56 loc) · 1.75 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
56
{
"name": "asteroid",
"version": "2.0.3",
"description": "Alternative Meteor client",
"main": "lib/asteroid.js",
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rimraf lib coverage",
"coverage": "env NODE_ENV=test env NODE_PATH=src babel-node $(npm bin)/isparta cover _mocha -- --recursive test/unit",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"dev": "npm test -- --watch",
"lint": "eslint src test",
"prepublish": "npm run clean && npm run build",
"test": "env NODE_ENV=test env NODE_PATH=src _mocha --compilers js:babel-core/register --recursive test/unit",
"start-meteor": "cd test/server/ && meteor",
"e2e-test": "env NODE_ENV=test env NODE_PATH=src _mocha --compilers js:babel-core/register --recursive test/e2e",
"e2e-dev": "npm run e2e-test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/mondora/asteroid.git"
},
"keywords": [
"ddp",
"asteroid",
"meteor"
],
"author": "Paolo Scanferla <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mondora/asteroid/issues"
},
"homepage": "https://github.com/mondora/asteroid",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-plugin-rewire": "^1.0.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"coveralls": "^2.11.14",
"eslint": "^3.7.1",
"faye-websocket": "^0.11.0",
"isparta": "^4.0.0",
"mocha": "^3.1.0",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"ddp.js": "^2.2.0",
"lodash.assign": "^4.2.0",
"wolfy87-eventemitter": "^5.1.0"
}
}