-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.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
{
"name": "machine-as-action",
"version": "10.3.1",
"description": "Run a machine from an HTTP or WebSocket request.",
"scripts": {
"test": "npm run lint && npm run custom-tests && echo 'Done.'",
"lint": "node ./node_modules/eslint/bin/eslint . --max-warnings=0 && echo '✔ Your code looks good.'",
"custom-tests": "echo \"Running tests...\" && echo && node ./node_modules/mocha/bin/mocha -t 8000 && echo"
},
"main": "lib/machine-as-action.js",
"keywords": [
"machine",
"action",
"actions2",
"controller",
"sails.js",
"sails",
"blueprint",
"request",
"websocket",
"http"
],
"author": "Mike McNeil",
"license": "MIT",
"dependencies": {
"flaverr": "^1.5.1",
"@sailshq/lodash": "^3.10.2",
"machine": "^15.2.2",
"rttc": "^10.0.0-4",
"streamifier": "0.1.1"
},
"devDependencies": {
"eslint": "3.5.0",
"mocha": "3.0.2",
"sails": "^1.0.0-0"
},
"repository": {
"type": "git",
"url": "[email protected]:treelinehq/machine-as-action.git"
}
}