-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "cached-iterable",
"description": "Iterables which cache the values they yield",
"version": "0.3.0",
"author": "Mozilla <[email protected]>",
"license": "Apache-2.0",
"contributors": [
{
"name": "Zibi Braniecki",
"email": "[email protected]"
},
{
"name": "Staś Małolepszy",
"email": "[email protected]"
}
],
"directories": {
"lib": "./src"
},
"main": "./index.js",
"module": "./src/index.mjs",
"repository": {
"type": "git",
"url": "https://github.com/projectfluent/cached-iterable.git"
},
"engines": {
"node": ">=8.9.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.47",
"@babel/plugin-proposal-async-generator-functions": "^7.0.0-beta.49",
"@babel/plugin-transform-modules-commonjs": "^7.0.0-beta.49",
"@babel/polyfill": "^7.0.0-beta.49",
"@babel/preset-env": "^7.0.0-beta.47",
"@babel/register": "^7.0.0-beta.49",
"babel-eslint": "^8.2.3",
"eslint": "^4.18.1",
"eslint-plugin-mocha": "^4.11.0",
"mocha": "^4.1.0",
"rollup": "^0.59.1",
"rollup-plugin-babel": "^4.0.0-beta.4"
}
}