-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 982 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
{
"name": "donejs-firebase",
"version": "1.0.1",
"description": "A plugin for deploying your DoneJS application to Firebase.",
"homepage": "https://donejs.com/",
"author": {
"name": "Bitovi",
"email": "contact@bitovi.com",
"url": "http://bitovi.com/"
},
"license": "MIT",
"main": "lib/",
"scripts": {
"test": "npm run jshint && npm run mocha",
"jshint": "jshint test/. default/index.js --config",
"mocha": "mocha test/ --timeout 120000",
"publish": "git push origin --tags && git push origin",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"keywords": [
"donejs",
"plugin"
],
"dependencies": {
"lodash": "^4.14.1",
"yeoman-generator": "^0.24.1"
},
"devDependencies": {
"jshint": "^2.9.2",
"mocha": "^3.0.0",
"yeoman-assert": "^3.0.0",
"yeoman-test": "^1.4.0"
}
}