-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.57 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
{
"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 <david@adaltas.com>",
"contributors": [
"David Worms <david@adaltas.com> (https://www.adaltas.com)",
"Pierre Sauvage <pierre@adaltas.com> (https://www.adaltas.com)"
],
"bin": {
"masson": "./bin/masson"
},
"repository": {
"type": "git",
"url": "git://github.com/adaltas/node-masson.git"
},
"license": "MIT",
"dependencies": {
"each": "^2.7.0",
"glob": "^10.4.1",
"mixme": "^1.1.0",
"multimatch": "^7.0.0",
"nikita": "^1.0.0-alpha.7",
"shell": "^0.9.6",
"yaml": "^2.4.5"
},
"devDependencies": {
"@eslint/js": "^9.5.0",
"coffeescript": "^2.7.0",
"dedent": "^1.5.3",
"eslint": "9.x",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mocha": "^10.4.3",
"globals": "^15.6.0",
"mocha": "^10.4.0",
"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:link": "yarn link nikita && yarn link @nikitajs/core && yarn link @nikitajs/file && yarn link @nikitajs/utils",
"test": "mocha test/**/*.coffee"
},
"type": "module"
}