-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.32 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.32 KB
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
{
"name": "algorithmia",
"version": "1.0.0",
"description": "Client library for calling algorithms in the Algorithmia marketplace",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"license": "Apache-2.0",
"keywords": [],
"scripts": {
"compile": "tsc",
"compile:watch": "tsc -w",
"prepare": "npm run compile",
"prepublishOnly": "npm test --detectOpenHandles",
"lint": "eslint ./src/**/*.{js,ts} ./test/**/*.{js,ts,test.ts,test.js} --quiet",
"lint:fix": "npm run lint -- --fix",
"test": "jest"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"@babel/preset-typescript": "^7.13.0",
"@tsconfig/node12": "^1.0.7",
"@types/jest": "^26.0.23",
"@types/node": "^14.14.44",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"babel-jest": "^26.6.3",
"dotenv": "^10.0.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"prettier": "^2.3.0",
"ts-jest": "^26.5.6",
"ts-node": "^9.0.0",
"typescript": "^4.2.4"
},
"dependencies": {
"typed-rest-client": "^1.8.4"
}
}