-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
59 lines (59 loc) · 2.06 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
{
"name": "iterall",
"version": "1.3.0",
"description": "Minimal zero-dependency utilities for using JavaScript Iterables in all environments.",
"license": "MIT",
"author": "Lee Byron <[email protected]> (http://leebyron.com/)",
"homepage": "https://github.com/leebyron/iterall",
"bugs": "https://github.com/leebyron/iterall/issues",
"repository": "github:leebyron/iterall",
"keywords": [
"es6",
"iterator",
"iterable",
"polyfill",
"for-of"
],
"main": "dist/index",
"module": "dist/index.esm.mjs",
"typings": "dist/index.d.ts",
"scripts": {
"test": "npm run lint && npm run build && npm run flow && npm run testonly && npm run docs",
"test-ci": "npm run lint-check && npm run build && npm run flow && npm run testonly && npm run docs-check",
"flow": "flow check --include-warnings",
"lint": "npm run prettier -- --write",
"lint-check": "npm run prettier -- --list-different",
"prettier": "prettier --single-quote --no-semi '*.{js,mjs}'",
"testonly": "nyc --check-coverage --statements 100 node test.js",
"docs": "documentation readme index.mjs --parse-extension mjs -s API",
"docs-check": "if [ \"$(documentation readme index.mjs --parse-extension mjs -ds API | grep -vF 'up to date')\" ]; then echo 'Must run: npm run docs'; exit 1; fi;",
"build": ". ./build.sh",
"travis": "npm run test-ci && nyc report --reporter=text-lcov | coveralls",
"preversion": "npm run test-ci",
"postversion": "npm run build",
"prepublishOnly": "npm run test-ci && (cd dist && npm publish) && exit 3"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-plugin-remove-comments": "2.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
"coveralls": "^3.0.9",
"documentation": "^12.1.4",
"flow-bin": "^0.114.0",
"nyc": "11.4.1",
"prettier": "^1.19.1",
"regression": "2.0.1"
},
"babel": {
"plugins": [
"remove-comments",
[
"transform-es2015-modules-commonjs",
{
"strict": true
}
]
]
}
}