-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.07 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
{
"name": "noflo-automaton",
"description": "Automate navigation on the web based on Casper.js",
"version": "0.1.6",
"author": {
"name": "Kenneth Kan",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/kenhkan/noflo-automaton.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/kenhkan/noflo-automaton/blob/master/LICENSE.md"
}
],
"dependencies": {
"noflo": "~0.4.0",
"spooky": "~0.2.4",
"uuid": "~1.4.1",
"noflo-core": "~0.1.1",
"noflo-strings": "~0.1.1",
"underscore.string": "~2.3.3",
"q": "~0.9.7",
"lodash": "~2.3.0"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-coffeelint": "0.0.7",
"grunt-contrib-watch": "~0.3.1",
"grunt-contrib-nodeunit": "~0.2.2",
"grunt-bump": "0.0.11",
"grunt-conventional-changelog": "~1.0.0"
},
"main": "lib/main.coffee",
"keywords": [
"scraping",
"webpage",
"casperjs",
"phantomjs",
"navigation",
"automation"
],
"noflo": {
"components": {
"Rule": "components/Rule.coffee",
"Iterate": "components/Iterate.coffee",
"Setup": "components/Setup.coffee",
"Start": "components/Start.coffee",
"Click": "components/runners/click.coffee",
"Wait": "components/runners/wait.coffee",
"WaitFor": "components/runners/waitFor.coffee",
"WaitForText": "components/runners/waitForText.coffee",
"JqueryValue": "components/runners/jqueryValue.coffee",
"Extract": "components/runners/extract.coffee",
"Fill": "components/runners/fill.coffee",
"Capture": "components/runners/capture.coffee",
"Open": "components/runners/open.coffee",
"Value": "components/runners/value.coffee",
"Select": "components/runners/select.coffee",
"Bypass": "components/runners/bypass.coffee",
"Output": "components/runners/output.coffee",
"Missing": "components/runners/missing.coffee"
},
"graphs": {
"Automaton": "graphs/Automaton.fbp"
}
},
"scripts": {
"test": "grunt test"
}
}