-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.15 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
{
"name": "chrome-ext-messenger",
"version": "2.0.12",
"author": "Asaf Menahem",
"description": "Chrome extension message passing made easy",
"main": "dist/chrome-ext-messenger.min.js",
"scripts": {
"build": "set WEBPACK_ENV=build&&\"./node_modules/.bin/webpack\" --progress",
"dev": "set WEBPACK_ENV=dev&&\"./node_modules/.bin/webpack\" --progress --watch",
"test": "./node_modules/.bin/mocha ./test/main.js --compilers js:babel-core/register --timeout 10000"
},
"repository": "https://github.com/asimen1/chrome-ext-messenger",
"bugs": "https://github.com/asimen1/chrome-ext-messenger/issues",
"license": "MIT",
"keywords": [
"chrome extension",
"message passing",
"messenger",
"messages"
],
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.22.0",
"chai": "^3.5.0",
"clean-webpack-plugin": "^0.1.15",
"eslint": "^3.14.0",
"mocha": "^3.2.0",
"rewire": "^2.5.2",
"sinon": "^1.17.7",
"sinon-chrome": "^2.1.3",
"webpack": "^1.14.0"
},
"dependencies": {
"logdown": "^2.0.3"
}
}