forked from nlhuykhang/meteor-publish-join
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.85 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
57
58
59
60
61
62
{
"name": "meteor-publish-join",
"version": "1.1.7",
"description": "Publish non-reactive or aggregated values",
"repository": {
"type": "git",
"url": "https://github.com/nlhuykhang/meteor-publish-join"
},
"license": "MIT",
"options": {
"mocha": "--require scripts/mocha_runner src/**/__tests__/**/*.js"
},
"files": [
"dist",
"index.js"
],
"scripts": {
"prepublish": ". ./scripts/prepublish.sh",
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"testonly": "nyc --reporter=html --reporter=text mocha $npm_package_options_mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test": "npm run lint && npm run testonly && npm run coverage",
"test-watch": "npm run testonly -- --watch --watch-extensions js",
"start": "babel src -d dist --watch"
},
"devDependencies": {
"babel-cli": "6.x.x",
"babel-core": "6.x.x",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-runtime": "6.x.x",
"babel-polyfill": "6.x.x",
"babel-preset-es2015": "6.x.x",
"babel-preset-stage-2": "6.x.x",
"chai": "3.x.x",
"coveralls": "^2.13.0",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-import-resolver-meteor": "^0.3.4",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"grunt": "^1.0.1",
"grunt-browserify": "^5.0.0",
"grunt-build-control": "^0.7.1",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"jit-grunt": "^0.10.0",
"mocha": "2.x.x",
"nodemon": "1.7.x",
"nyc": "^10.2.0",
"sinon": "^2.1.0"
},
"dependencies": {
"babel-runtime": "6.x.x",
"uuid": "^3.1.0"
}
}