-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "lambduh",
"version": "0.0.0-development",
"description": "transform stdin with JS lambda instead of using sed, jq, etc. Duh!",
"main": "lib/index.js",
"bin": {
"duh": "lib/index.js",
"lambduh": "lib/index.js"
},
"scripts": {
"lint": "eslint lib test",
"lint:fix": "eslint --fix lib test",
"lint:watch": "esw --watch lib test",
"flow": "flow",
"flow:coverage": "for file in lib/**.js test/**.js; do echo $file; flow coverage $file; done",
"flow:watch": "flow-watch -e js,js.flow,flowconfig --ignore lib/ --ignore node_modules/ --watch .flowconfig --watch lib/ --watch test/",
"test": "NODE_ENV=production BABEL_ENV=test nyc --reporter=lcov --reporter=text mocha $npm_package_config_mocha",
"test:watch": "mocha --watch $npm_package_config_mocha",
"commitmsg": "validate-commit-msg",
"precommit": "npm run lint",
"prepush": "npm test",
"prepublish": "npm run lint && npm test",
"open:coverage": "open coverage/lcov-report/index.html",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"config": {
"mocha": "./test/**/*.js",
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"nyc": {
"include": [
"lib/**/*.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/jedwards1211/lambduh.git"
},
"keywords": [
"stdio",
"json",
"io",
"jq",
"sed",
"eval",
"es6",
"lambda",
"lambda-functions"
],
"author": "Andy Edwards",
"license": "MIT",
"bugs": {
"url": "https://github.com/jedwards1211/lambduh/issues"
},
"homepage": "https://github.com/jedwards1211/lambduh#readme",
"devDependencies": {
"@jedwards1211/eslint-config-es5": "^1.0.0",
"@jedwards1211/eslint-config-flow": "^1.0.0",
"chai": "^3.5.0",
"copy": "^0.3.0",
"coveralls": "^2.13.0",
"eslint": "^3.18.0",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-watch": "^3.0.1",
"flow-bin": "^0.42.0",
"flow-watch": "^1.1.1",
"husky": "^0.13.3",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"nyc": "^10.2.0",
"rimraf": "^2.6.1",
"semantic-release": "^6.3.6",
"validate-commit-msg": "^2.11.2"
},
"dependencies": {
"line-reader": "^0.4.0"
}
}