forked from leebyron/iterall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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": "iterall",
"version": "1.0.2",
"description": "Minimal zero-dependency utilities for using JavaScript Iterables in all environments.",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run testonly && npm run testdocs",
"lint": "standard --verbose index.js test.js",
"testonly": "nyc --check-coverage --statements 100 node test.js",
"testdocs": "if [ \"$(documentation readme -dgs API | grep -vF 'up to date')\" ]; then echo 'Must run: npm run docs'; exit 1; fi;",
"docs": "documentation readme -gs API",
"travis": "npm run test && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/leebyron/iterall.git"
},
"files": [
"index.js",
"index.js.flow",
"index.d.ts",
"LICENSE"
],
"keywords": [
"es6",
"iterator",
"iterable",
"polyfill",
"for-of"
],
"author": "Lee Byron <[email protected]> (http://leebyron.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/leebyron/iterall/issues"
},
"homepage": "https://github.com/leebyron/iterall#readme",
"devDependencies": {
"coveralls": "2.11.9",
"documentation": "4.0.0-beta5",
"nyc": "6.6.1",
"standard": "7.1.2"
}
}