-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.84 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
68
69
{
"name": "instagram-account-info",
"version": "1.0.1",
"description": "instagram-account-info.",
"private": false,
"main": "dist/instagramAccountInfo.node.js",
"browser": "dist/instagramAccountInfo.js",
"files": [
"dist",
"src/sass"
],
"scripts": {
"dev": "webpack --config build/webpack.dev.js",
"build": "webpack --config build/webpack.prod.js",
"start": "webpack-dev-server --config build/webpack.dev.js --hot --open --https",
"test": "jest",
"coverage": "npm run test -- --coverage",
"prepublishOnly": "npm test && npm run build",
"upgrade-all": "npx npm-check-updates -u && npm i"
},
"author": {
"name": "Catalin Besleaga",
"url": "http://catalinbesleaga.co"
},
"repository": "https://github.com/katalonne/instagram-account-info",
"homepage": "https://github.com/katalonne/instagram-account-info#readme",
"license": "MIT",
"sideEffects": false,
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/preset-env": "^7.5.5",
"autoprefixer": "^9.4.9",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^1.0.1",
"css-loader": "^2.1.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.1.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^4.2.1"
},
"engines": {
"node": ">= 8"
},
"keywords": [
"browser",
"library",
"instagram",
"info",
"javascript",
"project",
"es6",
"babel",
"jest"
],
"dependencies": {
"then-request": "^6.0.2"
}
}