-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.13 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.13 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "featureprobe-server-sdk-node",
"version": "2.2.0",
"description": "FeatureProbe Server Side SDK for Node.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"unpkg": "./dist/featureprobe-server-sdk-node.min.js",
"jsdelivr": "./dist/featureprobe-server-sdk-node.min.js",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test:cov": "jest --coverage --no-cache --runInBand",
"lint": "prettier ./",
"build": "npm run build:ts && npm run build:web",
"build:ts": "tsc",
"build:web": "rollup -c rollup.config.js",
"package": "npm run build && npm pack",
"doc": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FeatureProbe/server-sdk-node.git"
},
"keywords": [
"featureprobe",
"server"
],
"publishConfig": {
"access": "public"
},
"author": "FeatureProbe",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/FeatureProbe/server-sdk-node/issues"
},
"homepage": "https://github.com/FeatureProbe/server-sdk-node",
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-typescript": "^8.3.2",
"@types/jest": "^27.0.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-check-file": "^1.2.2",
"eslint-plugin-import": "^2.26.0",
"fetch-mock": "^9.11.0",
"jest": "^27.2.0",
"jest-environment-jsdom": "^27.2.0",
"prettier": "^2.7.1",
"rollup": "^2.70.2",
"rollup-plugin-babel-minify": "^10.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^27.1.0",
"typedoc": "^0.23.10",
"typescript": "^4.7.4"
},
"dependencies": {
"@types/semver": "^7.3.12",
"isomorphic-fetch": "^3.0.0",
"pino": "^7.10.0",
"socket.io-client": "^4.5.3",
"ts-node": "^10.9.1"
}
}