-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.19 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
{
"name": "machinepack-process",
"version": "4.0.1",
"description": "Work with child procs and the running process.",
"scripts": {
"custom-tests": "node ./node_modules/test-machinepack-mocha/bin/testmachinepack-mocha.js && ./node_modules/mocha/bin/mocha test/*.js --timeout 5000 --slow 2000",
"test": "npm run lint && npm run custom-tests",
"lint": "node ./node_modules/eslint/bin/eslint . --max-warnings=0"
},
"keywords": [
"Process",
"machines",
"machinepack"
],
"author": "Mike McNeil",
"license": "MIT",
"dependencies": {
"@sailshq/lodash": "^3.10.2",
"machine": "^15.0.0-23",
"opn": "5.3.0"
},
"devDependencies": {
"async": "2.0.1",
"eslint": "4.11.0",
"mocha": "3.0.2",
"test-machinepack-mocha": "^3.0.0"
},
"machinepack": {
"friendlyName": "Process",
"machineDir": "lib/",
"machines": [
"open-browser",
"kill-child-process",
"spawn-child-process",
"execute-command",
"escape-as-command-line-opt"
],
"testsUrl": "https://travis-ci.org/treelinehq/machinepack-process"
},
"repository": {
"type": "git",
"url": "git@github.com:treelinehq/machinepack-process.git"
}
}