-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·32 lines (32 loc) · 1.06 KB
/
package.json
File metadata and controls
executable file
·32 lines (32 loc) · 1.06 KB
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
{
"name": "eventsFeedPlugin",
"version": "1.0.0",
"description": "This Buildfire plugin allows user to add their calender events in feed mode:",
"main": "index.js",
"supportSite": "http://learn.appdocumentation.com/plugin-tutorials/events-feed-plugin-tutorial",
"scripts": {
"postinstall": "./node_modules/.bin/bower install",
"test": "./node_modules/.bin/karma start --single-run --browsers PhantomJS",
"build": "cd .. && rm -rf eventsFeedPlugin.zip && zip -r eventsFeedPlugin.zip eventsFeedPlugin/ -x \\*node_modules\\* \\*.git\\* \\*test\\*"
},
"license": "ISC",
"dependencies": {
"async": "^1.4.2",
"bower": "^1.5.3",
"karma-cli": "^0.1.0"
},
"devDependencies": {
"chai": "^3.0.0",
"jasmine-core": "^2.3.4",
"karma": "^0.13.9",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.0",
"karma-coverage": "^0.5.5",
"karma-jasmine": "^0.3.8",
"karma-junit-reporter": "^0.3.8",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.3",
"mocha": "^2.2.5",
"phantomjs": "^1.9.17"
}
}