-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·110 lines (110 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·110 lines (110 loc) · 2.95 KB
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
107
108
109
110
{
"_from": "brcast@^3.0.1",
"_id": "brcast@3.0.1",
"_inBundle": false,
"_integrity": "sha512-eI3yqf9YEqyGl9PCNTR46MGvDylGtaHjalcz6Q3fAPnP/PhpKkkve52vFdfGpwp4VUvK6LUr4TQN+2stCrEwTg==",
"_location": "/brcast",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "brcast@^3.0.1",
"name": "brcast",
"escapedName": "brcast",
"rawSpec": "^3.0.1",
"saveSpec": null,
"fetchSpec": "^3.0.1"
},
"_requiredBy": [
"/@material-ui/core",
"/theming"
],
"_resolved": "https://registry.npmjs.org/brcast/-/brcast-3.0.1.tgz",
"_shasum": "6256a8349b20de9eed44257a9b24d71493cd48dd",
"_spec": "brcast@^3.0.1",
"_where": "/home/lee/Desktop/javascript_project/react-webpack-babel/node_modules/@material-ui/core",
"amdName": "brcast",
"authors": [
"Alessandro Arnodo <alessandro@arnodo.net>"
],
"bugs": {
"url": "https://github.com/vesparny/brcast/issues"
},
"bundleDependencies": false,
"dependencies": {},
"deprecated": false,
"description": "Tiny data broadcaster with 0 dependencies",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"cross-env": "^5.0.1",
"gzip-size-cli": "^2.0.0",
"husky": "^0.14.3",
"jest": "^20.0.4",
"lint-staged": "^4.0.2",
"npm-run-all": "^4.0.2",
"prettier": "^1.5.3",
"rimraf": "^2.5.2",
"rollup": "^0.45.2",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-uglify": "^2.0.1",
"standard": "^10.0.2",
"standard-version": "^4.0.0"
},
"files": [
"dist",
"index.js",
"index.spec.js"
],
"homepage": "https://github.com/vesparny/brcast",
"jsnext:main": "dist/brcast.es.js",
"keywords": [
"events",
"eventemitter",
"pubsub",
"broadcast"
],
"license": "MIT",
"lint-staged": {
"*.js": [
"prettier --write --semi false --single-quote",
"standard --fix",
"git add"
]
},
"main": "dist/brcast.cjs.js",
"module": "dist/brcast.es.js",
"name": "brcast",
"repository": {
"type": "git",
"url": "git+https://github.com/vesparny/brcast.git"
},
"scripts": {
"build": "npm-run-all test clean rollup rollup:min size",
"bump": "standard-version",
"clean": "rimraf dist",
"format": "prettier --write --semi false '*.js' && standard --fix",
"lint": "standard",
"precommit": "lint-staged",
"release": "npm run build && npm run bump && git push --follow-tags origin master && npm publish",
"rollup": "rollup -c",
"rollup:min": "cross-env MINIFY=minify rollup -c",
"size": "echo \"Gzipped Size: $(cat dist/brcast.umd.min.js | gzip-size)\"",
"test": "npm run lint && npm run testonly",
"testonly": "jest --coverage"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"jest",
"expect",
"it",
"test",
"describe"
]
},
"umd:main": "dist/brcast.umd.js",
"version": "3.0.1"
}