-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.67 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
{
"name": "velocity-plugins-index",
"version": "1.0.0",
"description": "Scripts to maintain the public index for UrbanCode Velocity plugins that instances of UrbanCode Velocity reach out to for plugin installs/upgrades",
"license": "MIT",
"author": "UrbanCode <urbancode-plugins@hcl.com>",
"repository": {
"type": "git",
"url": "https://github.com/UrbanCode/velocity-plugins-index"
},
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"add-new-plugin": "babel-node src/scripts/addNewPlugin.js",
"add-release": "babel-node src/scripts/addRelease.js",
"generate-index": "babel-node src/scripts/generateIndex.js",
"lint": "npm run lint-scripts && npm run lint-plugins && npm run lint-index",
"lint-index": "babel-node src/scripts/lintIndex.js",
"lint-plugins": "babel-node src/scripts/lintPlugins",
"lint-scripts": "eslint .",
"test": "npm run lint && npm run test-unit && npm run test-func",
"test-func": "mocha test/func --timeout 20000 --opts .mocha.opts",
"test-unit": "mocha test/unit --opts .mocha.opts"
},
"dependencies": {
"@hapi/joi": "^15.1.0",
"deasync": "^0.1.15",
"fs-extra": "^8.0.1",
"joi-extension-semver": "^3.0.0",
"log4js": "^4.3.1",
"meow": "^5.0.0",
"moment": "^2.24.0",
"semver": "^6.1.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"babel-eslint": "^10.0.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^5.16.0",
"husky": "^2.4.1",
"mocha": "^6.2.3",
"sinon": "^7.3.2",
"sinon-test": "^2.4.0"
}
}