-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 2.12 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@infrablocks/concourse",
"version": "0.28.0-pre.11",
"description": "A JavaScript SDK for the Concourse CI API.",
"main": "./commonjs/index.js",
"exports": {
"import": "./src/index.js",
"require": "./commonjs/index.js"
},
"scripts": {
"lint": "standard --env mocha",
"lintFix": "standard --env mocha --fix",
"start": "babel src -s inline -d commonjs --watch",
"build": "babel src -s inline -d commonjs",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"version:bump:pre": "npm version prerelease --preid=pre",
"version:bump:minor": "npm version minor",
"version:bump:next": "npm version preminor --preid=pre",
"test": "mocha --recursive --timeout 30000 ./test",
"integration": "mocha --recursive --timeout 30000 ./integration"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/infrablocks/concourse.js.git"
},
"keywords": [
"concourse",
"ci",
"javascript",
"sdk"
],
"author": "Toby Clemson",
"license": "MIT",
"bugs": {
"url": "https://github.com/infrablocks/concourse.js/issues"
},
"homepage": "https://github.com/infrablocks/concourse.js#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"files": [
"LICENSE.txt",
"README.md",
"ROUTES.md",
"src",
"commonjs",
"test",
"integration"
],
"standard": {
"globals": [
"describe",
"it"
]
},
"dependencies": {
"await-lock": "^2.2.2",
"axios": "^1.5.1",
"camelcase-keys-deep": "^0.1.0",
"form-urlencoded": "^6.1.4",
"joi": "^17.11.0",
"js-base64": "^3.7.5",
"jsonwebtoken": "^9.0.2",
"ramda": "^0.30.1",
"semver": "^7.5.4"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@faker-js/faker": "^8.2.0",
"axios-mock-adapter": "^1.22.0",
"chai": "^5.0.0",
"hosted-git-info": "^8.0.0",
"lodash": "^4.17.21",
"minimist": "^1.2.8",
"mocha": "^11.0.1",
"node-rsa": "^1.1.1",
"sinon": "^19.0.2",
"standard": "^17.1.0"
}
}