forked from rtsao/browser-unhandled-rejection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.17 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
{
"name": "browser-unhandled-rejection",
"version": "1.0.2",
"description": "Run browser and node tests with coverage reports",
"author": "Ryan Tsao <[email protected]>",
"repository": "[email protected]:rtsao/browser-unhandled-rejection.git",
"homepage": "https://github.com/rtsao/browser-unhandled-rejection",
"bugs": "https://github.com/rtsao/browser-unhandled-rejection/issues",
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.es.js",
"files": [
"dist/bundle.cjs.js",
"dist/bundle.es.js"
],
"scripts": {
"prepublish": "npm run build",
"pretest": "npm run build-test",
"test": "npm run test-aplus && zuul --local -- dist-test/index.js",
"build": "rollup -c",
"build-test": "rollup -c rollup.config.test.js",
"pretravis-test-browser": "npm run build-test",
"travis-test-browser": "zuul -- dist-test/index.js",
"test-aplus": "npm run build && promises-aplus-tests test/adapter"
},
"dependencies": {},
"devDependencies": {
"babel-preset-env": "^1.3.3",
"promises-aplus-tests": "^2.1.2",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"tape": "^4.6.3",
"zuul": "^3.11.1"
},
"license": "MIT"
}