forked from Unleash/unleash-proxy-client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.73 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": "unleash-proxy-client",
"version": "2.0.0",
"description": "A browser client that can be used together with the unleash-proxy.",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build",
"examples",
"src"
],
"scripts": {
"preversion": "rm -rf build && npm run build",
"build": "npm run build:ts && npm run build:web",
"lint": "eslint ./src",
"build:ts": "tsc",
"build:web": "rollup -c rollup.config.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unleash/unleash-proxy-client-js.git"
},
"author": "@Unleash",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/unleash/unleash-proxy-client-js/issues"
},
"homepage": "https://github.com/unleash/unleash-proxy-client-js#readme",
"devDependencies": {
"@babel/runtime": "^7.14.0",
"@types/jest": "^27.0.1",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"jest": "^27.0.6",
"jest-fetch-mock": "^2.1.2",
"jest-localstorage-mock": "^2.4.18",
"prettier": "^2.5.1",
"rollup": "^1.20.3",
"rollup-plugin-babel-minify": "^9.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.24.0",
"rollup-plugin-uglify": "^6.0.2",
"ts-jest": "^27.0.5",
"tslib": "2.3.1",
"tslint": "^5.18.0",
"typescript": "^4.4.3",
"uglify-js": "^3.6.0"
},
"dependencies": {
"tiny-emitter": "^2.1.0",
"uuid": "^8.3.2"
},
"overrides": {
"node-fetch": "^2.6.7",
"serialize-javascript": "^3.1.0"
}
}