-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.02 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
{
"name": "most-async-iterable",
"description": "Create Most.js Streams from async iterables",
"version": "1.0.0",
"author": "Zong-Ru Jiang <[email protected]> (github.com/ray851107)",
"bugs": {
"url": "https://github.com/mostjs-community/most-async-iterable/issues"
},
"devDependencies": {
"@most/eslint-config-most": "^1.0.3",
"assert": "^1.4.1",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-async-generator-functions": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"eslint": "^3.13.0",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.0",
"jsinspect": "^0.9.0",
"mocha": "^3.4.2",
"most": "^1.6.2",
"nyc": "^11.1.0",
"rollup": "^0.41.1",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-buble": "^0.15.0",
"sinon": "^3.2.1",
"uglify-js": "^3.0.14"
},
"files": [
"dist",
"type-definitions"
],
"homepage": "https://github.com/mostjs-community/most-async-iterable#readme",
"keywords": [
"most",
"mostjs",
"reactive",
"event",
"async",
"stream"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"types": "type-definitions/most-async-iterable.d.ts",
"peerDependencies": {
"most": "^1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mostjs-community/most-async-iterable.git"
},
"scripts": {
"build": "npm run build:dist && uglifyjs dist/index.js -o dist/index.min.js",
"build:dist": "mkdir -p dist && rollup -c --name 'async-iterable'",
"test:lint": "jsinspect src && jsinspect test && eslint src test",
"prepublish": "npm run build",
"preversion": "npm run build",
"test": "npm run test:lint && npm run test:unit",
"test:unit": "nyc mocha --recursive -r ./test/register"
}
}