-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
70 lines (70 loc) · 2.01 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
{
"name": "@most/multicast",
"version": "1.3.0",
"description": "Efficient stream sharing for most.js",
"main": "dist/multicast.js",
"jsnext:main": "dist/multicast.es.js",
"module": "dist/multicast.es.js",
"typings": "type-definitions/index.d.ts",
"files": [
"src/*",
"dist/*",
"type-definitions/index.d.ts"
],
"scripts": {
"build:dist": "rollup -c && rollup -c rollup.es.js",
"build:min": "uglifyjs dist/multicast.js -o dist/multicast.min.js",
"build:flow": "cpy src/index.js.flow dist --rename multicast.js.flow",
"build": "npm run build:dist && npm run build:min && npm run build:flow",
"prepublish": "npm run build",
"preversion": "npm run build",
"test:unit": "istanbul cover _mocha -- -r buba/register",
"test:lint": "jsinspect src && jsinspect test && eslint src test --ignore-pattern flow",
"test:flow": "flow check",
"test": "npm run test:lint && npm run test:unit && npm run test:flow"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mostjs/multicast.git"
},
"keywords": [
"most",
"mostjs",
"reactive",
"event",
"async",
"streams",
"multicast"
],
"author": "Tylor Steinberer <tlsteinberger167@gmail.com> (github.com/TylorS)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mostjs/multicast/issues"
},
"homepage": "https://github.com/mostjs/multicast#readme",
"devDependencies": {
"@most/eslint-config-most": "^1.0.3",
"assert": "^1.4.1",
"buba": "^2.0.2",
"cpy-cli": "^1.0.1",
"eslint": "^3.3.1",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.0",
"flow-bin": "^0.53.1",
"istanbul": "^1.1.0-alpha.1",
"jsinspect": "^0.8.0",
"mocha": "^3.0.2",
"most": "^1.0.1",
"rollup": "^0.34.9",
"rollup-plugin-buble": "^0.12.1",
"sinon": "^1.17.5",
"uglify-js": "^2.7.1"
},
"peerDependencies": {
"most": "^1.0.1"
},
"dependencies": {
"@most/prelude": "^1.4.0"
}
}