-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
106 lines (106 loc) · 3.06 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "react-pubsub",
"description": "PubSub abstraction layer for React, should support any compliant pub-sub libray.",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib dist",
"build": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/react-pubsub.js && NODE_ENV=production webpack src/index.js dist/react-pubsub.min.js",
"lint": "./node_modules/.bin/eslint src examples",
"prepublish": "npm run lint && npm run clean && npm run build && npm run build:umd",
"test": "node_modules/.bin/ava --tap test | tnyan",
"test:cov": "node_modules/.bin/nyc node_modules/.bin/ava --verbose test",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"commit": "git cz",
"coverage": "nyc report",
"coverage:upload": "npm run coverage -- --reporter=lcovonly && coveralls < coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "https://github.com/cef62/react-pubsub.git"
},
"keywords": [
"react",
"decorator",
"pubsub"
],
"authors": [
"Matteo Ronchi (https://github.com/cef62)",
"Stefano Ceschi Berrini (https://github.com/stecb)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cef62/react-pubsub/issues"
},
"homepage": "https://github.com/cef62/react-pubsub",
"devDependencies": {
"ava": "0.9.1",
"babel-cli": "6.4.0",
"babel-core": "6.4.0",
"babel-eslint": "5.0.0-beta6",
"babel-loader": "6.2.1",
"babel-plugin-object-assign": "1.2.1",
"babel-plugin-transform-flow-strip-types": "6.4.0",
"babel-plugin-transform-inline-environment-variables": "6.3.13",
"babel-plugin-transform-node-env-inline": "6.3.13",
"babel-plugin-transform-object-assign": "6.3.13",
"babel-plugin-transform-undefined-to-void": "6.3.13",
"babel-polyfill": "6.3.14",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"babel-preset-stage-2": "6.3.13",
"coveralls": "2.11.6",
"cz-conventional-changelog": "1.1.5",
"eslint": "1.10.3",
"eslint-config-airbnb": "3.0.2",
"eslint-plugin-react": "3.14.0",
"ghooks": "1.0.3",
"jsdom": "7.2.2",
"nyc": "5.3.0",
"react": "0.14.6",
"react-addons-test-utils": "0.14.6",
"react-dom": "0.14.6",
"rimraf": "2.5.0",
"semantic-release": "4.3.5",
"sinon": "1.17.2",
"tap-nyan": "0.0.2",
"validate-commit-msg": "1.0.0",
"watch": "0.17.1",
"webpack": "1.12.10"
},
"dependencies": {
"hoist-non-react-statics": "1.0.3"
},
"peerDependencies": {
"react": ">=0.14.0"
},
"npmName": "react-pubsub",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"config": {
"ghooks": {
"pre-commit": "npm run lint && npm t",
"commit-msg": "validate-commit-msg"
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"nyc": {
"exclude": [
"test",
"coverage",
"test{,-*}.js",
"node_modules",
"lib",
"dist",
"examples"
]
}
}
}