-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1.42 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
{
"name": "emitr",
"version": "0.0.9",
"description": "An node/browser event emitter that supports dispatching based on types.",
"homepage": "http://BladeRunnerJS.github.io/emitr",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BladeRunnerJS/emitr.git"
},
"main": "./src/index.js",
"scripts": {
"prepublish": "mkdirp dist && browserify src/index.js -s emitr -o dist/emitr.js",
"postpublish": "publish-release --assets dist/emitr.js --notes 'Add release notes here.'",
"pretest": "npm run pretest:lint",
"pretest:lint": "eslint src test",
"test": "npm run test:node && npm run test:browser && npm run test:saucelabs",
"test:node": "mocha test",
"test:node:debug": "mocha test -w",
"test:browser": "karma start",
"test:browser:debug": "karma start karma-debug.conf.js",
"test:saucelabs": "envcheck SAUCE_ACCESS_KEY && karma start karma-saucelabs.conf.js"
},
"devDependencies": {
"browserify": "^11.0.0",
"chai": "^3.2.0",
"core-js": "^1.0.1",
"env-check": "^0.0.1",
"eslint": "^0.24.1",
"expectations": "^0.5.1",
"karma": "^0.13.6",
"karma-browserify": "^4.2.1",
"karma-chrome-launcher": "^0.2.0",
"karma-cli": "^0.1.0",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"karma-sauce-launcher": "^0.2.14",
"mkdirp": "^0.5.1",
"mocha": "^2.2.5",
"publish-release": "^1.0.2"
}
}