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 4
/
package.json
62 lines (62 loc) · 2.24 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": "@kloudless/kloudless",
"version": "1.1.1",
"author": "Kloudless <[email protected]>",
"description": "Node and browser javascript interface to the Kloudless API.",
"repository": {
"type": "git",
"url": "https://github.com/kloudless/kloudless-js.git"
},
"bugs": {
"url": "https://github.com/kloudless/kloudless-js/issues",
"email": "[email protected]"
},
"license": "MIT",
"main": "./dist/kloudless",
"scripts": {
"dev_web": "webpack-dev-server --color --progress --config ./config/webpack.dev.conf.js",
"dev_node": "babel-node ./dev/node/index.js -i \"[]\"",
"build_dist": "BABEL_ENV=production webpack --color --progress --config ./config/webpack.prod.conf.js",
"dist-clean": "rm -rf dist/ && mkdir dist",
"build": "npm run dist-clean && npm run build_dist",
"_unit": "jest --config test/unit/jest.conf.js --coverage",
"unit_web": "TARGET_ENV=web npm run _unit",
"unit_node": "TARGET_ENV=node npm run _unit",
"test": "npm run unit_web; npm run unit_node",
"test-clean": "jest --clearCache",
"prepack": "bash config/generate_npmignore.sh && npm install && npm run test && npm run build",
"postpack": "rm -f .npmignore"
},
"dependencies": {
"axios": "0.19.0-beta.1"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.2.2",
"@babel/node": "7.2.2",
"@babel/plugin-transform-modules-commonjs": "7.2.0",
"@babel/polyfill": "7.2.5",
"@babel/preset-env": "7.2.3",
"@kloudless/authenticator": "https://github.com/Kloudless/authenticator.js.git#master",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "24.5.0",
"babel-loader": "8.0.5",
"babel-plugin-module-resolver": "3.1.2",
"babel-plugin-transform-define": "1.3.1",
"eslint": "5.12.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-friendly-formatter": "4.0.1",
"eslint-loader": "2.1.1",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-promise": "4.0.1",
"express": "4.16.4",
"friendly-errors-webpack-plugin": "1.7.0",
"html-webpack-plugin": "3.2.0",
"jest": "24.0.0-alpha.9",
"webpack": "4.28.4",
"webpack-cli": "3.2.1",
"webpack-dev-server": "3.1.14"
}
}