forked from Flagsmith/flagsmith-js-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.25 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.25 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
{
"name": "bullet-train-client",
"description": "Feature flagging to support continuous development",
"scripts": {
"prepublish": "npm run build",
"deploy": "npm run build && cd ./bullet-train-client/ && npm publish && cd ../react-native-bullet-train && npm publish",
"start": "node_modules/.bin/webpack --watch",
"build": "node_modules/.bin/webpack && babel ./bullet-train-client/isomorphic-es6.js --out-file bullet-train-client/isomorphic.js"
},
"repository": {
"type": "git",
"url": "https://github.com/SolidStateGroup/bullet-train-js-client"
},
"keywords": [
"react native",
"feature flagger",
"continuous deployment"
],
"author": "SSG",
"license": "MIT",
"bugs": {
"url": "https://github.com/SolidStateGroup/bullet-train-js-client/issues"
},
"homepage": "https://bullet-train.io",
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.3",
"babel-loader": "^8.0.6",
"babel-preset-minify": "^0.5.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9"
},
"dependencies": {
"@callstack/async-storage": "^1.1.0",
"encoding": "^0.1.12",
"isomorphic-unfetch": "^3.0.0"
}
}