-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.68 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
{
"name": "cci-pingu",
"version": "2.9.1",
"description": "Periodically check for new builds (artifacts) on CircleCI and install them in turn",
"license": "MIT",
"author": "Roman Kaspar <[email protected]>",
"contributors": [
"Jan Dolezel <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/salsita/cci-pingu"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"babel": "babel lib --out-dir dist/lib --source-maps inline && babel cci-pingu.js --out-dir dist --source-maps inline",
"build": "npm run gen-ver && npm run lint && rimraf dist && npm run babel && npm run test",
"gen-ver": "printf \"// generated code, please see package.json\nexport default '%s';\n\" ${npm_package_version} > lib/version.js",
"lint": "eslint lib cci-pingu.js",
"test": "mocha --colors --recursive --reporter list dist/**/*.spec.js",
"start": "./bin/cci-pingu --config=config/default.json --debug",
"prepare": "npm run build"
},
"bin": {
"cci-pingu": "bin/cci-pingu"
},
"keywords": [
"automated",
"continuous",
"deployment",
"circleci",
"circleci.com",
"artifact",
"artifacts"
],
"devDependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "7.16.0",
"@babel/preset-env": "7.16.0",
"eslint": "7.32.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.1",
"eslint-plugin-standard": "4.1.0",
"mocha": "8.4.0",
"rimraf": "3.0.2"
},
"dependencies": {
"argv": "^0.0.2",
"lodash.filter": "^4.6.0",
"lodash.orderby": "^4.6.0",
"request": "^2.88.2"
}
}