-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
41 lines (41 loc) · 897 Bytes
/
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
{
"name": "es6-iterator",
"version": "2.0.3",
"description": "Iterator abstraction based on ES6 specification",
"author": "Mariusz Nowak <medyk@medikoo.com> (http://www.medikoo.com/)",
"keywords": [
"iterator",
"array",
"list",
"set",
"map",
"generator"
],
"repository": {
"type": "git",
"url": "git://github.com/medikoo/es6-iterator.git"
},
"dependencies": {
"d": "^1.0.1",
"es5-ext": "^0.10.50",
"es6-symbol": "^3.1.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-medikoo-es5": "^1.7.3",
"event-emitter": "^0.3.5",
"tad": "^0.2.8"
},
"eslintConfig": {
"extends": "medikoo-es5",
"root": true,
"rules": {
"no-extend-native": "off"
}
},
"scripts": {
"lint": "eslint --ignore-path=.gitignore .",
"test": "node ./node_modules/tad/bin/tad"
},
"license": "MIT"
}