-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.54 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
{
"name": "@isic/client",
"version": "0.0.0",
"description": "A client library for authenticating with the ISIC Archive from an SPA (single page application).",
"author": "Kitware, Inc. <[email protected]>",
"license": "Apache-2.0",
"main": "dist/isic-client.js",
"types": "dist/isic-client.d.ts",
"files": [
"/src/",
"/dist/"
],
"scripts": {
"lint": "eslint ./src/**.ts",
"watch": "tsc --watch",
"build:clean": "rimraf ./dist",
"build:compile": "tsc",
"build": "npm-run-all build:clean build:compile",
"prepack": "npm-run-all build"
},
"dependencies": {
"@girder/oauth-client": "^0.8.0"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.0",
"typescript": "^5.0.4"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"airbnb-base",
"airbnb-typescript/base"
],
"rules": {
"no-restricted-syntax": 0,
"no-console": [
"warn",
{
"allow": [
"error"
]
}
]
}
}
}