-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.26 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.26 KB
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
{
"name": "step-through-array",
"version": "0.0.1",
"description": "Steps over an array ov values, forward or reverse",
"main": "dist/index.js",
"scripts": {
"test": "mocha --require @babel/register ./src/**/*.test.js",
"test-dist": "mocha ./dist/**/*.test.js",
"babel": "babel src --out-dir dist",
"build": "npm run babel",
"prepublish": "npm run build",
"cover" : "istanbul cover ./node_modules/mocha/bin/_mocha ./dist/index.test.js --report lcovonly -- -R spec && codecov -t 8e7a127a-0ef9-411a-8ae5-dffc85e7487f"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leighs-hammer/step-through-array.git"
},
"keywords": [
"array",
"helper"
],
"author": "Leigh Barnes",
"license": "MIT",
"bugs": {
"url": "https://github.com/leighs-hammer/step-through-array/issues"
},
"homepage": "https://github.com/leighs-hammer/step-through-array#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"chai": "^4.2.0",
"codecov": "^3.2.0",
"eslint": "^5.14.0",
"husky": "^1.3.1",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0"
}
}