-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.81 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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "ballyhoo",
"version": "2.0.2",
"description": "Bloody simple, super tiny, pub/sub JS events based on https://davidwalsh.name/pubsub-javascript implemented in ES6.",
"main": "index.js",
"module": "src/index.js",
"scripts": {
"test": "jest --coverage --notify",
"test:watch": "jest --watchAll --coverage --notify",
"test:ci": "jest --ci --runInBand --coverage --reporters=default --reporters=jest-junit",
"build": "rollup ./src/index.js --file src/index.js --format umd --name \\\"duxedo\\\"",
"version": "auto-changelog -p && git add CHANGELOG.md",
"semver:patch": "npm version patch",
"semver:minor": "npm version minor",
"semver:major": "npm version major",
"distribute": "npm publish --access public",
"distribute:patch": "npm run semver:patch && npm run distribute",
"distribute:minor": "npm run semver:minor && npm run distribute",
"distribute:major": "npm run semver:major && npm run distribute",
"serve:coverage": "http-server ./coverage/lcov-report -p 7357"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pushplaybang/ballyhoo.git"
},
"keywords": [
"events",
"pu/sub",
"es6",
"microlib",
""
],
"author": "Paul van Zyl <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-spread": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"auto-changelog": "^1.11.0",
"babel-jest": "^24.1.0",
"eslint": "^5.13.0",
"flow-bin": "^0.92.0",
"http-server": "^0.11.1",
"jest": "^24.1.0",
"prettier": "^1.16.4",
"rollup": "^1.6.0"
},
"bugs": {
"url": "https://github.com/Pushplaybang/ballyhoo/issues"
},
"homepage": "https://github.com/Pushplaybang/ballyhoo#readme",
"dependencies": {
"jest-junit": "^6.4.0"
}
}