-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.03 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
{
"name": "fluentflow",
"main": "index.js",
"version": "0.4.2",
"scripts": {
"test": "nyc nodeunit && nyc check-coverage --lines 99 --functions 95 --branches 75 --statements 90 && semistandard && npm run docs-lint",
"format": "semistandard",
"format-fix": "semistandard --fix",
"coverage": "nyc nodeunit",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"docs-lint": "documentation lint core/**",
"docs-build": "npm run docs-build-md && npm run docs-build-html",
"docs-build-md": "documentation build --config documentation-md.yml --markdown-toc false -f md -o README.md core/**",
"docs-build-html": "documentation build --config documentation.yml -f html -o docs core/**",
"docs-serve": "documentation serve --watch --config documentation.yml core/**"
},
"dependencies": {
"JSONStream": "^1.2.1",
"async": "^2.6.3",
"esprima": "^4.0.1",
"event-stream": "^4.0.1",
"harmony-reflect": "^1.6.1",
"immutable": "^4.0.0-rc.12",
"lodash": "^4.17.15",
"minimist": "^1.2.0",
"uglify-js2": "^2.1.11",
"vm2": "^3.8.3"
},
"devDependencies": {
"coveralls": "^3.0.5",
"documentation": "^8.1.2",
"nodeunit": "^0.11.3",
"nyc": "^13.1.0",
"semistandard": "^13.0.1"
},
"license": "Apache-2.0",
"description": "FluentFlow is a filter language which lets you easily define 'followed by'-relations in a flow of JavaScript objects",
"bin": {
"fluentflow": "./bin/fluentflow.js"
},
"files": [
"bin/**/*.js",
"core/**/*.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Enteee/FluentFlow.git"
},
"keywords": [
"json",
"matcher",
"fluent"
],
"author": "Ente <[email protected]> (https://duckpond.ch)",
"contributors": [
"T-moe <[email protected]>"
],
"bugs": {
"url": "https://github.com/Enteee/FluentFlow/issues"
},
"homepage": "https://github.com/Enteee/FluentFlow#readme",
"semistandard": {
"ignore": [
"rules.js",
"test/meta/",
"docs/"
]
}
}