-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.56 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
{
"name": "masson",
"version": "0.2.1",
"description": "Actions scheduling and orchestration for deployment a lot more.",
"homepage": "https://github.com/adaltas/node-masson",
"bugs": "https://github.com/adaltas/node-masson/issues",
"author": "David Worms <[email protected]>",
"contributors": [
"David Worms <[email protected]> (https://www.adaltas.com)",
"Pierre Sauvage <[email protected]> (https://www.adaltas.com)"
],
"bin": "./bin/masson",
"repository": {
"type": "git",
"url": "git://github.com/adaltas/node-masson.git"
},
"license": "MIT",
"dependencies": {
"each": "^2.7.2",
"glob": "^11.0.0",
"mixme": "^1.1.0",
"multimatch": "^7.0.0",
"nikita": "^1.0.0-alpha.9",
"shell": "^0.12.0",
"yaml": "^2.6.1"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"coffeescript": "^2.7.0",
"dedent": "^1.5.3",
"eslint": "9.x",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mocha": "^10.5.0",
"globals": "^15.12.0",
"mocha": "^10.8.2",
"should": "^13.2.3"
},
"exports": {
".": "./lib/index.js",
"./*": "./actions/*.js"
},
"main": "lib/index.js",
"mocha": {
"inline-diffs": true,
"loader": "./test/loader/coffee.js",
"recursive": true,
"reporter": "spec",
"require": [
"should"
],
"throw-deprecation": true,
"timeout": 40000
},
"scripts": {
"dev:links": "npm link nikita && npm link @nikitajs/core && npm link @nikitajs/logs && npm link @nikitajs/file && npm link @nikitajs/utils",
"test": "mocha"
},
"type": "module"
}