forked from Unleash/unleash-proxy-client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "unleash-proxy-client",
"version": "1.0.1",
"description": "A browser client that can be used together with the unleash-proxy.",
"main": "./build/index.js",
"typings": "./build/index.d.ts",
"files": [
"build",
"examples"
],
"scripts": {
"preversion": "rm -rf build && npm run build",
"build": "npm run build:ts && npm run build:web",
"build:ts": "tsc",
"build:web": "rollup -c rollup.config.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unleash-hosted/unleash-proxy-client-js.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/unleash-hosted/unleash-proxy-client-js/issues"
},
"homepage": "https://github.com/unleash-hosted/unleash-proxy-client-js#readme",
"devDependencies": {
"@types/jest": "^24.0.18",
"jest": "^24.9.0",
"jest-fetch-mock": "^2.1.2",
"rollup": "^1.20.3",
"rollup-plugin-babel-minify": "^9.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.24.0",
"rollup-plugin-uglify": "^6.0.2",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"typescript": "^3.5.3",
"uglify-js": "^3.6.0"
},
"dependencies": {
"tiny-emitter": "^2.1.0"
}
}