-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.86 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
{
"name": "sensorthings-client",
"version": "0.0.1",
"description": "JavaScript client implementation for the SensorThings API.",
"author": "Rémy Raes",
"repository": "https://github.com/metachris/typescript-boilerplate",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"my-cli-tool": "./dist/esbuild/cli.js"
},
"scripts": {
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint src/ --ext .js,.jsx,.ts,.tsx --fix",
"test": "jest",
"test:integration": "npx ts-node test/integration.ts",
"clean": "rm -rf dist build package",
"ts-node": "ts-node",
"docs": "typedoc --entryPoints src/**/*.ts",
"build": "npx webpack --mode production",
"esbuild-node": "esbuild src/index.ts --bundle --platform=node --minify --sourcemap=external --outfile=dist/esbuild/cli.js",
"esbuild-node:dev": "esbuild src/index.ts --bundle --sourcemap=external --outfile=dist/esbuild/cli.js",
"esbuild-node:watch": "esbuild src/index.ts --bundle --watch --sourcemap=external --outfile=dist/esbuild/cli.js",
"size": "size-limit",
"analyze": "size-limit --why"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^5.0.4",
"@size-limit/time": "^6.0.3",
"@types/jest": "^26.0.21",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"esbuild": "^0.11.11",
"eslint": "^7.22.0",
"husky": "^7.0.2",
"jest": "^26.6.3",
"size-limit": "^6.0.3",
"ts-jest": "^26.5.4",
"ts-loader": "^9.2.6",
"ts-node": "^9.1.1",
"typedoc": "^0.20.35",
"typescript": "^4.2.3",
"webpack": "^5.59.1",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@turf/helpers": "^6.5.0",
"axios": "^0.22.0"
},
"size-limit": [
{
"path": "dist/bundle.js",
"limit": "20 KB"
}
]
}