-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 921 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
{
"name": "busjs",
"version": "0.0.6",
"description": "Message bus for Javascript",
"main": "./index.js",
"repository": {
"type": "git",
"url": "https://github.com/JacekJagiello/busjs.git"
},
"scripts": {
"prepublish": "./node_modules/.bin/webpack",
"tests": "npm run unit-tests --silent && npm run integration-tests --silent",
"unit-tests": "NODE_PATH=. node_modules/.bin/mocha --compilers js:babel-core/register tests/unit/*.spec.js tests/unit/**/*.spec.js",
"integration-tests": "NODE_PATH=. node_modules/.bin/mocha --compilers js:babel-core/register tests/Integration.test.js"
},
"author": "Jacek Jagiello",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.6.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"webpack": "^1.12.14"
}
}