-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.4 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
{
"name": "flowage",
"version": "0.0.5",
"description": "Easy filtering and transformations for NodeJS streams.",
"engines": {
"node": ">=8.0.0"
},
"main": "src/main.js",
"keywords": [
"stream",
"transformation",
"filter",
"underscore"
],
"author": {
"name": "Marek Trunkat",
"url": "https://trunkat.eu"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/mtrunkat/js-flowage"
},
"bugs": {
"url": "https://github.com/mtrunkat/js-flowage/issues"
},
"homepage": "https://github.com/mtrunkat/js-flowage",
"files": [
"src"
],
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha --timeout 60000 --recursive",
"lint": "npm run build && ./node_modules/.bin/eslint ./src ./test",
"lint:fix": "./node_modules/.bin/eslint ./src ./test --ext .js,.jsx --fix",
"build-toc": "./node_modules/.bin/markdown-toc README.md -i"
},
"dependencies": {
"underscore": "^1.9.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.0.1",
"markdown-toc": "^1.2.0",
"mocha": "^3.5.3",
"nyc": "^13.0.1"
}
}