-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.46 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": "floodgate-javascript-sdk",
"version": "1.3.1",
"description": "JavaScript SDK for floodgate.io",
"main": "dist/index.js",
"scripts": {
"debug": "karma start --no-single-run",
"build": "tsc",
"compile": "webpack",
"test": "karma start",
"transform": "npm run build",
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/floodgate-io/javascript-sdk.git"
},
"keywords": [
"floodgate",
"feature flag",
"feature toggle",
"soft launch",
"remote config",
"canary release",
"remote management"
],
"author": "FloodGate",
"license": "MIT",
"bugs": {
"url": "https://github.com/floodgate-io/javascript-sdk/issues"
},
"homepage": "https://github.com/floodgate-io/javascript-sdk#readme",
"devDependencies": {
"@types/chai": "^4.2.5",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"karma": "^4.4.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^1.2.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-typescript": "^4.1.1",
"mocha": "^6.2.2",
"ts-loader": "^6.2.0",
"ts-node": "^8.5.2",
"typescript": "^3.6.4",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
},
"dependencies": {
"events": "^3.0.0",
"js-sha1": "^0.6.0"
}
}