-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.58 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
{
"name": "scalingo",
"version": "0.8.2",
"description": "Wrapper for the Scalingo API",
"main": "dist/scalingo.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "Scalingo/scalingo.js",
"author": "Scalingo <[email protected]>",
"license": "MIT",
"scripts": {
"build": "npm run lint:js -- --quiet && tsc --listEmittedFiles && node bundle.js",
"docs": "typedoc src/index.ts",
"lint": "npm run lint:ts && npm run lint:js",
"lint:js": "eslint --ext .js,.ts ./src ./test",
"lint:ts": "tsc --noEmit",
"test": "ts-mocha --require @babel/register --recursive --paths -p test/tsconfig.test.json test/*.js test/**/*.test.js"
},
"dependencies": {
"axios": "^1.3.1",
"isomorphic-ws": "^5.0.0",
"ws": "^8.5.0"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "7.x",
"@babel/register": "7.x",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"axios-mock-adapter": "^2.0.0",
"chai": "^4.3.6",
"core-js": "^3.21.1",
"esbuild": "^0.23.0",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^5.0.0",
"mocha": "^10.0.0",
"prettier": "^3.0.0",
"rosie": "^2.1.0",
"sinon": "^18.0.0",
"ts-mocha": "^10.0.0",
"tsconfig-paths": "^4.0.0",
"typedoc": "^0.26.3",
"typescript": "^5.1.6"
},
"publishConfig": {
"access": "public"
}
}