This repository has been archived by the owner on Oct 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
67 lines (67 loc) · 2.37 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
63
64
65
66
67
{
"name": "@kloudless/authenticator",
"version": "1.3.0",
"description": "The Kloudless Authenticator JS library prompts your users to connect their accounts to your Kloudless project via a pop-up.",
"keywords": [
"authenticator",
"kloudless"
],
"homepage": "https://github.com/kloudless/authenticator.js#readme",
"bugs": {
"url": "https://github.com/kloudless/authenticator.js/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kloudless/authenticator.js.git"
},
"license": "MIT",
"author": "Kloudless <[email protected]> (https://kloudless.com)",
"main": "dist/auth-widget.js",
"scripts": {
"build": "npm run build:js && npm run transpile",
"build:js": "webpack --config build-config/webpack.prod.conf.js",
"build:storybook": "npm run build --prefix ./storybook-react && npm run build --prefix ./storybook-vue",
"clean": "rm -rf dist/* && rm -f build/*",
"deploy:storybook": "npm run build:storybook && storybook-to-ghpages --remote=github --existing-output-dir=.demo",
"dev": "DEBUG=true npm run build:js",
"lint": "eslint --ext .js src test",
"prepack": "bash generate_npmignore.sh && npm install && npm run build",
"postpack": "rm -f .npmignore",
"storybook:react": "npm run storybook --prefix ./storybook-react",
"storybook:vue": "npm run storybook --prefix ./storybook-vue",
"test": "node test/server.js",
"transpile": "babel src/ -d dist/ --ignore src/browser"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.0",
"prop-types": "15.7.2"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.3.3",
"@babel/preset-env": "7.3.1",
"@babel/preset-react": "7.0.0",
"@storybook/storybook-deployer": "2.8.1",
"babel-loader": "8.0.5",
"babel-plugin-transform-define": "1.3.1",
"babel-preset-env": "1.6.1",
"del": "2.2.0",
"eslint": "5.3.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-loader": "2.0.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-react": "7.12.4",
"express": "4.16.4",
"method-override": "3.0.0",
"morgan": "1.9.1",
"pug": "2.0.3",
"react": "16.8.2",
"react-dom": "16.8.2",
"stylus": "0.54.5",
"webpack": "4.29.4",
"webpack-cli": "3.2.3"
}
}