-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.74 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@inplayer-org/inplayer.js",
"version": "3.13.28",
"author": "InPlayer",
"license": "MIT",
"description": "A Javascript SDK for Inplayer's RESTful API",
"publishConfig": {
"access": "public"
},
"main": "dist/inplayer.min.js",
"types": "dist/index.d.ts",
"browser": "dist/inplayer.min.js",
"files": [
"dist"
],
"engines": {
"node": ">=8"
},
"scripts": {
"dev": "webpack --progress --colors --watch",
"prebuild": "rimraf dist",
"build:dev": "cross-env NODE_ENV=development webpack --config ./webpack.config.js",
"build:prod": "cross-env NODE_ENV=production webpack --config ./webpack.config.js",
"lint": "eslint \"src/**/*.{js,ts,tsx}\" --quiet --fix",
"lint:js:fix": "eslint src/** --fix",
"analyze-bundle": "babel-node ./tools/analyzeBundle.js",
"prepublishOnly": "yarn build:prod",
"prebuild:typedoc": "rimraf docs",
"build:typedoc": "typedoc --options ./typedoc.json"
},
"lint-staged": {
"*.js": [
"prettier --tab-width 2 --trailing-comma es5 --single-quote --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/inplayer-org/inplayer.js.git"
},
"keywords": [
"sdk",
"inplayer"
],
"dependencies": {
"aws-iot-device-sdk": "^2.2.6",
"axios": "^0.21.2",
"core-js": "^3.19.2",
"fingerprintjs2": "^2.1.2",
"lodash": "^4.17.20",
"qs": "^6.9.4"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@babel/register": "^7.12.10",
"@babel/runtime": "^7.12.5",
"@types/aws-iot-device-sdk": "^2.2.2",
"@types/fingerprintjs2": "^2.0.0",
"@types/lodash": "^4.14.167",
"@types/qs": "^6.9.5",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"copy-webpack-plugin": "^6.3.1",
"cross-env": "^7.0.3",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"lodash-webpack-plugin": "^0.11.6",
"prettier": "^2.2.1",
"terser-webpack-plugin": "^4.2.3",
"typedoc": "^0.22.4",
"typescript": "^4.0.5",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^4.1.0",
"webpack-cli": "^3.3.12"
}
}